-
Notifications
You must be signed in to change notification settings - Fork 0
/
pom.xml
104 lines (100 loc) · 3.25 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
104
<?xml version="1.0" encoding="UTF-8"?>
<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>net.sourceforge.owlapi</groupId>
<artifactId>owlapibenchmarks</artifactId>
<version>4.0.1</version>
<packaging>pom</packaging>
<name>Benchmark resources for OWL API benchmarks project</name>
<description>Benchmark resources for OWLAPI Benchmarks module</description>
<url>https://github.com/owlcs/owlapibenchmarks</url>
<modules>
<module>ncbitaxon</module>
</modules>
<issueManagement>
<system>GitHub</system>
<url>https://github.com/owlcs/owlapibenchmarks/issues</url>
</issueManagement>
<licenses>
<license>
<name>Apache License Version 2.0, January 2004</name>
<url>http://www.apache.org/licenses/</url>
<distribution>repo</distribution>
</license>
<license>
<name>GNU LGPL Version 3.0</name>
<url>http://www.gnu.org/licenses/lgpl.txt</url>
<distribution>repo</distribution>
</license>
</licenses>
<developers>
<developer>
<id>ignazio1977</id>
<name>Ignazio Palmisano</name>
<email>ignazio1977@users.sourceforge.net</email>
</developer>
</developers>
<mailingLists>
<mailingList>
<name>OWLAPI Development Mailing list</name>
<subscribe>https://lists.sourceforge.net/lists/listinfo/owlapi-developert</subscribe>
<unsubscribe>https://lists.sourceforge.net/lists/listinfo/owlapi-developer</unsubscribe>
<archive>http://sourceforge.net/mailarchive/forum.php?forum_name=owlapi-developer</archive>
<post>owlapi-developer@lists.sourceforge.net</post>
</mailingList>
</mailingLists>
<profiles>
<profile>
<id>release-sign-artifacts</id>
<activation>
<activeByDefault>false</activeByDefault>
<property>
<name>performRelease</name>
<value>true</value>
</property>
</activation>
<build>
<plugins>
<!-- We need the GPG Plugin to self-sign the jar files. A valid signature
for the jar files is a requirement for deploying to Maven Central. -->
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-gpg-plugin</artifactId>
<version>1.5</version>
<executions>
<execution>
<id>sign-artifacts</id>
<phase>verify</phase>
<goals>
<goal>sign</goal>
</goals>
</execution>
</executions>
</plugin>
</plugins>
</build>
</profile>
</profiles>
<build>
<plugins>
<plugin>
<groupId>org.sonatype.plugins</groupId>
<artifactId>nexus-staging-maven-plugin</artifactId>
<version>1.6.3</version>
<extensions>true</extensions>
<configuration>
<serverId>ossrh</serverId>
<nexusUrl>https://oss.sonatype.org/</nexusUrl>
<autoReleaseAfterClose>true</autoReleaseAfterClose>
</configuration>
</plugin>
</plugins>
</build>
<!-- Parameters for the Source Code Management system. -->
<scm>
<connection>scm:git:git://github.com/owlcs/owlapibenchmarks.git</connection>
<developerConnection>scm:git:git@github.com:owlcs/owlapibenchmarks.git</developerConnection>
<url>https://github.com/owlcs/owlapibenchmarks</url>
</scm>
</project>