-
Notifications
You must be signed in to change notification settings - Fork 0
/
pom.xml
103 lines (93 loc) · 2.74 KB
/
pom.xml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
<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">
<modelVersion>4.0.0</modelVersion>
<groupId>de.uni_jena.cs.fusion</groupId>
<artifactId>abecto</artifactId>
<version>3.1.2-SNAPSHOT</version>
<name>ABECTO</name>
<description>An ABox Evaluation and Comparison Tool for Ontologies</description>
<inceptionYear>2019</inceptionYear>
<organization>
<name>Heinz Nixdorf Chair for Distributed Information Systems, Friedrich Schiller University Jena</name>
<url>http://www.fusion.uni-jena.de/</url>
</organization>
<developers>
<developer>
<id>jmkeil</id>
<name>Jan Martin Keil</name>
<email>[email protected]</email>
</developer>
</developers>
<licenses>
<license>
<name>Apache License, Version 2.0</name>
<url>https://www.apache.org/licenses/LICENSE-2.0.txt</url>
<distribution>repo</distribution>
</license>
</licenses>
<packaging>pom</packaging>
<properties>
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
<javac.target>17</javac.target>
<apache.jena.version>5.0.0</apache.jena.version>
<junit.jupiter.version>5.5.1</junit.jupiter.version>
</properties>
<modules>
<module>abecto-core</module>
<module>abecto-benchmark</module>
</modules>
<build>
<plugins>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-surefire-plugin</artifactId>
<version>2.22.2</version>
</plugin>
<plugin>
<artifactId>maven-compiler-plugin</artifactId>
<version>3.8.1</version>
<configuration>
<release>${javac.target}</release>
<source>${javac.target}</source>
<target>${javac.target}</target>
</configuration>
</plugin>
<plugin>
<groupId>com.mycila</groupId>
<artifactId>license-maven-plugin</artifactId>
<version>3.0</version>
<configuration>
<header>license-header.txt</header>
<headerDefinitions>
<headerDefinition>license-header-style.xml</headerDefinition>
</headerDefinitions>
<mapping>
<java>JAVA_COMMENT_STYLE</java>
<nq>SCRIPT_STYLE</nq>
<nt>SCRIPT_STYLE</nt>
<rq>SCRIPT_STYLE</rq>
<trig>SCRIPT_STYLE</trig>
<ttl>SCRIPT_STYLE</ttl>
</mapping>
<excludes>
<exclude>LICENSE</exclude>
<exclude>CITATION.cff</exclude>
<exclude>pom.xml</exclude>
<exclude>.*/**</exclude>
<exclude>**/*.ftl</exclude>
<exclude>**/*.rdf</exclude>
</excludes>
</configuration>
<executions>
<execution>
<phase>validate</phase>
<goals>
<goal>check</goal>
</goals>
</execution>
</executions>
</plugin>
</plugins>
</build>
</project>