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

Diff of /miscJava/CircuitBreaker/pom.xml

Parent Directory Parent Directory | Revision Log Revision Log | View Patch Patch

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

Legend:
Removed from v.3212  
changed lines
  Added in v.3213

  ViewVC Help
Powered by ViewVC 1.1.20