/[projects]/miscJava/CircuitBreaker/pom.xml
ViewVC logotype

Contents of /miscJava/CircuitBreaker/pom.xml

Parent Directory Parent Directory | Revision Log Revision Log


Revision 3213 - (show annotations) (download) (as text)
Thu Dec 28 09:35:36 2017 UTC (6 years, 4 months ago) by torben
File MIME type: text/xml
File size: 2201 byte(s)
re-format pom
1 <project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
2 xsi:schemaLocation="http://maven.apache.org/POM/4.0.0
3 http://maven.apache.org/xsd/maven-4.0.0.xsd">
4
5 <modelVersion>4.0.0</modelVersion>
6 <groupId>dk.thoerup</groupId>
7 <artifactId>CircuitBreaker</artifactId>
8 <version>1.1.1</version>
9
10 <packaging>jar</packaging>
11
12 <properties>
13 <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
14 </properties>
15
16 <build>
17 <plugins>
18 <plugin>
19 <groupId>org.apache.maven.plugins</groupId>
20 <artifactId>maven-compiler-plugin</artifactId>
21 <version>3.1</version>
22 <configuration>
23 <source>1.7</source>
24 <target>1.7</target>
25 <showWarnings>true</showWarnings>
26 <showDeprecation>true</showDeprecation>
27 </configuration>
28 <!--Do NOT show depreciation in test compile -->
29 <executions>
30 <execution>
31 <id>default-testCompile</id>
32 <phase>test-compile</phase>
33 <configuration>
34 <showDeprecation>false</showDeprecation>
35 </configuration>
36 <goals>
37 <goal>testCompile</goal>
38 </goals>
39 </execution>
40 </executions>
41 </plugin>
42 </plugins>
43 </build>
44
45
46 <dependencies>
47 <dependency>
48 <groupId>javax.servlet</groupId>
49 <artifactId>javax.servlet-api</artifactId>
50 <version>3.0.1</version>
51 <scope>provided</scope>
52 </dependency>
53 <dependency>
54 <groupId>log4j</groupId>
55 <artifactId>log4j</artifactId>
56 <version>1.2.17</version>
57 <scope>provided</scope>
58 </dependency>
59 <dependency>
60 <groupId>javax.mail</groupId>
61 <artifactId>mail</artifactId>
62 <version>1.4</version>
63 <scope>provided</scope>
64 </dependency>
65
66 <dependency>
67 <groupId>junit</groupId>
68 <artifactId>junit</artifactId>
69 <version>4.12</version>
70 <scope>test</scope>
71 </dependency>
72
73 </dependencies>
74
75
76
77 <repositories>
78 <repository>
79 <id>sonatype-nexus-snapshots</id>
80 <name>Sonatype Nexus Snapshots</name>
81 <url>https://oss.sonatype.org/content/repositories/snapshots</url>
82 <releases>
83 <enabled>false</enabled>
84 </releases>
85 <snapshots>
86 <enabled>true</enabled>
87 </snapshots>
88 </repository>
89 </repositories>
90
91 </project>

  ViewVC Help
Powered by ViewVC 1.1.20