forked from smokestack/smokestack
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpom.xml
118 lines (118 loc) · 4.36 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
105
106
107
108
109
110
111
112
113
114
115
116
117
118
<?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>net.sourceforge.smokestack</groupId>
<artifactId>smokestack</artifactId>
<packaging>pom</packaging>
<version>0.1-SNAPSHOT</version>
<name>Smokestack</name>
<description>
${project.name} is a modular JEE unit testing framework, independent of Java unit
testing framework (like JUnit or TestNG) with functionality geared for validation.
</description>
<url>http://smokestack.sourceforge.net/</url>
<inceptionYear>2009</inceptionYear>
<modules>
<module>smokestack-common</module>
<module>smokestack-jndi-1.2</module>
<module>smokestack-jpa-1.0</module>
<module>smokestack-jms-1.1</module>
<module>smokestack-jca-1.5</module>
<module>smokestack-ejb-3.0</module>
<module>smokestack-jdbc-3.0</module>
</modules>
<scm>
<url>http://smokestack.git.sourceforge.net/git/gitweb-index.cgi</url>
<connection>scm:git:git://smokestack.git.sourceforge.net/gitroot/smokestack/smokestack</connection>
<developerConnection>scm:git:ssh://[email protected]/gitroot/smokestack/smokestack</developerConnection>
</scm>
<issueManagement>
<system>Sourceforge Tracker</system>
<url>https://sourceforge.net/tracker/?group_id=292052</url>
</issueManagement>
<distributionManagement>
<site>
<id>sourceforge.net</id>
<url>scp://shell.sourceforge.net/home/groups/s/sm/smokestack/htdocs</url>
</site>
</distributionManagement>
<build>
<pluginManagement>
<plugins>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-compiler-plugin</artifactId>
<configuration>
<source>1.5</source>
<target>1.5</target>
</configuration>
</plugin>
</plugins>
</pluginManagement>
</build>
<repositories>
<repository>
<id>maven2-repository.dev.java.net</id>
<name>Java.net Repository for Maven</name>
<url>http://download.java.net/maven/2/</url>
</repository>
<repository>
<id>jboss</id>
<name>JBoss Inc. Repository</name>
<url>http://repository.jboss.com/maven2/</url>
</repository>
</repositories>
<reporting>
<plugins>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-surefire-report-plugin</artifactId>
</plugin>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-jxr-plugin</artifactId>
</plugin>
<plugin>
<groupId>org.codehaus.mojo</groupId>
<artifactId>cobertura-maven-plugin</artifactId>
</plugin>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-javadoc-plugin</artifactId>
<configuration>
<links>
<link>http://java.sun.com/j2se/1.5.0/docs/api</link>
<link>http://java.sun.com/javaee/6/docs/api</link>
</links>
</configuration>
</plugin>
<plugin>
<groupId>org.codehaus.mojo</groupId>
<artifactId>findbugs-maven-plugin</artifactId>
<configuration>
<threshold>Low</threshold><!-- High|Normal|Low|Exp|Ignore -->
<effort>Default</effort><!-- Min|Default|Max -->
</configuration>
</plugin>
</plugins>
</reporting>
<licenses>
<license>
<name>Lesser General Public License (LGPL)</name>
<url>${project.license.file}</url>
</license>
</licenses>
<developers>
<developer>
<id>gliptak</id>
<name>Gábor Lipták</name>
</developer>
</developers>
<properties>
<project.license.file>${project.basedir}/LICENSE.txt</project.license.file>
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
<jmockit.version>0.995</jmockit.version>
<junit.version>4.7</junit.version>
<hamcrest.version>1.1</hamcrest.version>
</properties>
</project>