Path: blob/main/tools/contributed/lisum/lisum-core/pom.xml
169686 views
<?xml version="1.0" encoding="UTF-8"?>1<project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">2<modelVersion>4.0.0</modelVersion>34<parent>5<groupId>de.dlr.ts</groupId>6<artifactId>lisum</artifactId>7<version>1.0</version>8</parent>910<artifactId>lisum-core</artifactId>11<version>1.0.2</version>12<packaging>jar</packaging>1314<properties>15<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>16<maven.compiler.source>1.8</maven.compiler.source>17<maven.compiler.target>1.8</maven.compiler.target>18</properties>1920<dependencies>21<dependency>22<groupId>com.sun.jersey</groupId>23<artifactId>jersey-client</artifactId>24<version>1.18.1</version>25</dependency>26<dependency>27<groupId>org.apache.httpcomponents</groupId>28<artifactId>httpclient</artifactId>29<version>4.5.13</version>30<type>jar</type>31</dependency>32<dependency>33<groupId>org.hamcrest</groupId>34<artifactId>hamcrest-core</artifactId>35<version>1.3</version>36<scope>test</scope>37</dependency>38<dependency>39<groupId>commons-io</groupId>40<artifactId>commons-io</artifactId>41<version>2.14.0</version>42</dependency>43<dependency>44<groupId>org.apache.logging.log4j</groupId>45<artifactId>log4j-core</artifactId>46<version>2.17.1</version>47<type>jar</type>48</dependency>49<dependency>50<groupId>org.apache.maven</groupId>51<artifactId>maven-artifact</artifactId>52<version>3.0.3</version>53</dependency>54<dependency>55<groupId>de.tudresden</groupId>56<artifactId>traas</artifactId>57<version>1.1</version>58</dependency>59</dependencies>6061<build>62<plugins>63<plugin>64<groupId>org.apache.maven.plugins</groupId>65<artifactId>maven-compiler-plugin</artifactId>66<version>3.8.1</version>67<configuration>68<source>1.8</source>69<target>1.8</target>70</configuration>71</plugin>7273<plugin>74<artifactId>maven-assembly-plugin</artifactId>75<version>2.4</version>76<configuration>77<descriptorRefs>78<descriptorRef>jar-with-dependencies</descriptorRef>79</descriptorRefs>80<archive>81<manifest>82<mainClass>de.dlr.ts.lisum.Main</mainClass>83</manifest>84</archive>85</configuration>86<executions>87<execution>88<id>make-assembly</id>89<phase>package</phase>90<goals>91<goal>single</goal>92</goals>93</execution>94</executions>95</plugin>96</plugins>97<resources>98<resource>99<directory>../../../..</directory>100<includes>101<include>LICENSE</include>102<include>NOTICE.md</include>103</includes>104</resource>105</resources>106</build>107</project>108109110