Book a Demo!
CoCalc Logo Icon
StoreFeaturesDocsShareSupportNewsAboutPoliciesSign UpSign In
eclipse
GitHub Repository: eclipse/sumo
Path: blob/main/tools/contributed/traas/pom.xml
169679 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
<groupId>de.tudresden</groupId>
5
<artifactId>traas</artifactId>
6
<version>1.1</version>
7
<packaging>jar</packaging>
8
<properties>
9
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
10
<maven.compiler.source>1.8</maven.compiler.source>
11
<maven.compiler.target>1.8</maven.compiler.target>
12
</properties>
13
14
<dependencies>
15
<dependency>
16
<groupId>junit</groupId>
17
<artifactId>junit</artifactId>
18
<version>4.13.1</version>
19
<scope>test</scope>
20
</dependency>
21
</dependencies>
22
23
<build>
24
<plugins>
25
26
<plugin>
27
<groupId>org.apache.maven.plugins</groupId>
28
<artifactId>maven-compiler-plugin</artifactId>
29
<version>3.8.1</version>
30
<configuration>
31
<compilerArgs>
32
<arg>-Xlint:all,-options,-path</arg>
33
</compilerArgs>
34
</configuration>
35
</plugin>
36
37
<plugin>
38
<artifactId>maven-javadoc-plugin</artifactId>
39
<version>3.2.0</version>
40
<configuration>
41
<!-- workaround for https://bugs.openjdk.java.net/browse/JDK-8212233 -->
42
<javaApiLinks>
43
<property>
44
<name>foo</name>
45
<value>bar</value>
46
</property>
47
</javaApiLinks>
48
<javadocExecutable>${java.home}/bin/javadoc</javadocExecutable>
49
<doclint>all,-missing</doclint>
50
</configuration>
51
</plugin>
52
</plugins>
53
<resources>
54
<resource>
55
<directory>../../..</directory>
56
<includes>
57
<include>LICENSE</include>
58
<include>NOTICE.md</include>
59
</includes>
60
<targetPath>META-INF</targetPath>
61
</resource>
62
</resources>
63
</build>
64
</project>
65
66