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

Annotation of /miscJava/CircuitBreaker/pom.xml

Parent Directory Parent Directory | Revision Log Revision Log


Revision 3214 - (hide annotations) (download) (as text)
Thu Dec 28 09:36:34 2017 UTC (6 years, 5 months ago) by torben
File MIME type: text/xml
File size: 1872 byte(s)
Bump version to 1.1.2
1 torben 3213 <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 torben 2450 http://maven.apache.org/xsd/maven-4.0.0.xsd">
4    
5 torben 3213 <modelVersion>4.0.0</modelVersion>
6     <groupId>dk.thoerup</groupId>
7     <artifactId>CircuitBreaker</artifactId>
8 torben 3214 <version>1.1.2</version>
9 torben 2450
10 torben 3213 <packaging>jar</packaging>
11 torben 2450
12 torben 3213 <properties>
13     <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
14     </properties>
15 torben 2450
16 torben 3213 <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 torben 2450
45 torben 2452
46 torben 3213 <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 torben 2450
66 torben 3213 <dependency>
67     <groupId>junit</groupId>
68     <artifactId>junit</artifactId>
69     <version>4.12</version>
70     <scope>test</scope>
71     </dependency>
72 torben 2450
73 torben 3213 </dependencies>
74 torben 2450
75    
76 torben 3213
77    
78 torben 2450 </project>

  ViewVC Help
Powered by ViewVC 1.1.20