forked from mindthegab/jabox
-
Notifications
You must be signed in to change notification settings - Fork 0
/
pom.xml
99 lines (95 loc) · 2.82 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
<?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/maven-v4_0_0.xsd">
<modelVersion>4.0.0</modelVersion>
<groupId>org.jabox</groupId>
<artifactId>jabox-parent</artifactId>
<packaging>pom</packaging>
<version>0.4.1-SNAPSHOT</version>
<name>Jabox Parent</name>
<description />
<modules>
<module>jabox</module>
<module>jabox-persistence</module>
<module>jabox-site</module>
<module>scm-subversion</module>
<module>bts-redmine</module>
<module>bts-chiliproject</module>
<module>bts-bugzilla</module>
<module>bts-jtrac</module>
<module>cis-hudson</module>
<module>cis-jenkins</module>
<module>mrm-nexus</module>
<module>sas-sonar</module>
<module>eclipse-startup</module>
<module>eclipse-webapp</module>
<module>ide-eclipse</module>
<module>maven-helper</module>
<module>mrm-artifactory</module>
<module>scm-beanstalk</module>
<module>mrm-scp</module>
<module>bts-mantis</module>
<module>scm-git</module>
<module>scm-github</module>
</modules>
<!--
TODO <organization> <name>company name</name> <url>company url</url>
</organization>
-->
<scm>
<url>git://github.com/jabox/jabox.git</url>
<connection>scm:git:git://github.com/jabox/jabox.git</connection>
<developerConnection>scm:git:[email protected]:jabox/jabox.git</developerConnection>
</scm>
<build>
<extensions>
<extension>
<groupId>org.apache.maven.wagon</groupId>
<artifactId>wagon-ssh</artifactId>
<version>1.0-beta-7</version>
</extension>
</extensions>
<plugins>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-compiler-plugin</artifactId>
<version>2.0.2</version>
<configuration>
<source>1.6</source>
<target>1.6</target>
</configuration>
</plugin>
</plugins>
</build>
<licenses>
<license>
<name>The Apache Software License, Version 2.0</name>
<url>http://www.apache.org/licenses/LICENSE-2.0.txt</url>
<distribution>repo</distribution>
</license>
</licenses>
<distributionManagement>
<repository>
<id>releases</id>
<name>Releases</name>
<url>scp://www.jabox.org/var/www/repository/releases/</url>
</repository>
<snapshotRepository>
<id>snapshots</id>
<name>Snapshots</name>
<url>scp://www.jabox.org/var/www/repository/snapshots/</url>
</snapshotRepository>
</distributionManagement>
<properties>
<wicket.version>1.5.1</wicket.version>
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
</properties>
<dependencies>
<!-- JUNIT DEPENDENCY FOR TESTING -->
<dependency>
<groupId>junit</groupId>
<artifactId>junit</artifactId>
<version>3.8.2</version>
<scope>test</scope>
</dependency>
</dependencies>
</project>