-
Notifications
You must be signed in to change notification settings - Fork 0
/
pom.xml
executable file
·79 lines (72 loc) · 3.83 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
<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/maven-v4_0_0.xsd">
<modelVersion>4.0.0</modelVersion>
<groupId>org.acmsl.queryj</groupId>
<artifactId>queryj</artifactId>
<packaging>pom</packaging>
<version>latest-SNAPSHOT</version>
<name>QueryJ</name>
<url>https://www.acm-sl.org/projects/queryj</url>
<inceptionYear>2002</inceptionYear>
<licenses>
<license>
<name>GPL</name>
<url>https://www.fsf.org/licensing/licenses/gpl.html</url>
<distribution>repo</distribution>
</license>
</licenses>
<organization>
<name>ACM-SL</name>
<url>https://www.acm-sl.org</url>
</organization>
<parent>
<groupId>org.acmsl</groupId>
<artifactId>acmsl-pom</artifactId>
<version>latest-SNAPSHOT</version>
</parent>
<properties>
<antlr4.visitor>true</antlr4.visitor>
<antlr4.listener>true</antlr4.listener>
</properties>
<modules>
<module>queryj-core</module>
<module>queryj-placeholders</module>
<module>queryj-template-packaging</module>
<module>queryj-ant-task</module>
<module>queryj-test</module>
<module>queryj-maven-plugin</module>
<module>queryj-template-packaging-maven-plugin</module>
<module>queryj-debugging</module>
<module>queryj-debugging-ant-task</module>
<module>queryj-debugging-maven-plugin</module>
<!--module>queryj-templates</module-->
</modules>
<scm>
<connection>scm:git:https://github.com/rydnr/queryj.git</connection>
<developerConnection>scm:git:https://github.com/rydnr/queryj.git</developerConnection>
<url>scm:git:https://github.com/rydnr/queryj.git</url>
<tag>HEAD</tag>
</scm>
<issueManagement>
<system>github</system>
<url>https://github.com/rydnr/queryj.git/</url>
</issueManagement>
<ciManagement>
<system>Hudson</system>
<url>https://jenkins.acm-sl.org/job/queryj</url>
<notifiers>
<notifier>
<type>mail</type>
<sendOnError>true</sendOnError>
<sendOnFailure>true</sendOnFailure>
<sendOnSuccess>true</sendOnSuccess>
<sendOnWarning>true</sendOnWarning>
<configuration>
<address>[email protected]</address>
</configuration>
</notifier>
</notifiers>
</ciManagement>
</project>