Book a Demo!
CoCalc Logo Icon
StoreFeaturesDocsShareSupportNewsAboutPoliciesSign UpSign In
eclipse
GitHub Repository: eclipse/sumo
Path: blob/main/tools/contributed/lisum/lisum-core/pom.xml
169686 views
1
<?xml version="1.0" encoding="UTF-8"?>
2
<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">
3
<modelVersion>4.0.0</modelVersion>
4
5
<parent>
6
<groupId>de.dlr.ts</groupId>
7
<artifactId>lisum</artifactId>
8
<version>1.0</version>
9
</parent>
10
11
<artifactId>lisum-core</artifactId>
12
<version>1.0.2</version>
13
<packaging>jar</packaging>
14
15
<properties>
16
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
17
<maven.compiler.source>1.8</maven.compiler.source>
18
<maven.compiler.target>1.8</maven.compiler.target>
19
</properties>
20
21
<dependencies>
22
<dependency>
23
<groupId>com.sun.jersey</groupId>
24
<artifactId>jersey-client</artifactId>
25
<version>1.18.1</version>
26
</dependency>
27
<dependency>
28
<groupId>org.apache.httpcomponents</groupId>
29
<artifactId>httpclient</artifactId>
30
<version>4.5.13</version>
31
<type>jar</type>
32
</dependency>
33
<dependency>
34
<groupId>org.hamcrest</groupId>
35
<artifactId>hamcrest-core</artifactId>
36
<version>1.3</version>
37
<scope>test</scope>
38
</dependency>
39
<dependency>
40
<groupId>commons-io</groupId>
41
<artifactId>commons-io</artifactId>
42
<version>2.14.0</version>
43
</dependency>
44
<dependency>
45
<groupId>org.apache.logging.log4j</groupId>
46
<artifactId>log4j-core</artifactId>
47
<version>2.17.1</version>
48
<type>jar</type>
49
</dependency>
50
<dependency>
51
<groupId>org.apache.maven</groupId>
52
<artifactId>maven-artifact</artifactId>
53
<version>3.0.3</version>
54
</dependency>
55
<dependency>
56
<groupId>de.tudresden</groupId>
57
<artifactId>traas</artifactId>
58
<version>1.1</version>
59
</dependency>
60
</dependencies>
61
62
<build>
63
<plugins>
64
<plugin>
65
<groupId>org.apache.maven.plugins</groupId>
66
<artifactId>maven-compiler-plugin</artifactId>
67
<version>3.8.1</version>
68
<configuration>
69
<source>1.8</source>
70
<target>1.8</target>
71
</configuration>
72
</plugin>
73
74
<plugin>
75
<artifactId>maven-assembly-plugin</artifactId>
76
<version>2.4</version>
77
<configuration>
78
<descriptorRefs>
79
<descriptorRef>jar-with-dependencies</descriptorRef>
80
</descriptorRefs>
81
<archive>
82
<manifest>
83
<mainClass>de.dlr.ts.lisum.Main</mainClass>
84
</manifest>
85
</archive>
86
</configuration>
87
<executions>
88
<execution>
89
<id>make-assembly</id>
90
<phase>package</phase>
91
<goals>
92
<goal>single</goal>
93
</goals>
94
</execution>
95
</executions>
96
</plugin>
97
</plugins>
98
<resources>
99
<resource>
100
<directory>../../../..</directory>
101
<includes>
102
<include>LICENSE</include>
103
<include>NOTICE.md</include>
104
</includes>
105
</resource>
106
</resources>
107
</build>
108
</project>
109
110