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

Annotation of /miscJava/SpejdernetScraper/pom.xml

Parent Directory Parent Directory | Revision Log Revision Log


Revision 3229 - (hide annotations) (download) (as text)
Wed May 16 10:32:24 2018 UTC (6 years ago) by torben
File MIME type: text/xml
File size: 2261 byte(s)
Minor version updates
1 torben 2456 <project
2     xmlns="http://maven.apache.org/POM/4.0.0"
3     xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
4     xsi:schemaLocation="http://maven.apache.org/POM/4.0.0
5     http://maven.apache.org/xsd/maven-4.0.0.xsd">
6    
7     <modelVersion>4.0.0</modelVersion>
8     <groupId>dk.thoerup</groupId>
9     <artifactId>SpejdernetScraper</artifactId>
10     <version>1.0</version>
11    
12     <packaging>war</packaging>
13    
14     <properties>
15     <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
16     </properties>
17    
18     <build>
19     <plugins>
20     <plugin>
21     <groupId>org.apache.maven.plugins</groupId>
22     <artifactId>maven-compiler-plugin</artifactId>
23     <version>3.1</version>
24     <configuration>
25     <source>1.7</source>
26     <target>1.7</target>
27     <showWarnings>true</showWarnings>
28     <showDeprecation>true</showDeprecation>
29     </configuration>
30     <!--Do NOT show depreciation in test compile-->
31     <executions>
32     <execution>
33     <id>default-testCompile</id>
34     <phase>test-compile</phase>
35     <configuration>
36     <showDeprecation>false</showDeprecation>
37     </configuration>
38     <goals>
39     <goal>testCompile</goal>
40     </goals>
41     </execution>
42     </executions>
43     </plugin>
44    
45    
46    
47     </plugins>
48     </build>
49    
50    
51     <dependencies>
52     <dependency>
53     <groupId>javax.servlet</groupId>
54     <artifactId>javax.servlet-api</artifactId>
55 torben 3229 <version>3.1.0</version>
56 torben 2456 <scope>provided</scope>
57     </dependency>
58    
59     <dependency>
60     <groupId>org.apache.commons</groupId>
61     <artifactId>commons-lang3</artifactId>
62     <version>3.3.2</version>
63     </dependency>
64    
65     <dependency>
66     <groupId>org.jsoup</groupId>
67     <artifactId>jsoup</artifactId>
68 torben 3229 <version>1.8.3</version>
69 torben 2456 </dependency>
70    
71     <dependency><!-- from hoerup artifactory -->
72     <groupId>dk.thoerup</groupId>
73     <artifactId>GenericJavaUtils</artifactId>
74     <version>1.0</version>
75     </dependency>
76    
77    
78     </dependencies>
79    
80    
81     <repositories>
82     <repository>
83     <id>hoerup-releases</id>
84     <name>hoerup-releases</name>
85     <url>http://app.t-hoerup.dk/artifactory/ext-release-local</url>
86     </repository>
87     </repositories>
88    
89     </project>

  ViewVC Help
Powered by ViewVC 1.1.20