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

Annotation of /miscJava/SpejdernetScraper/pom.xml

Parent Directory Parent Directory | Revision Log Revision Log


Revision 3232 - (hide annotations) (download) (as text)
Wed May 16 11:40:13 2018 UTC (6 years ago) by torben
File MIME type: text/xml
File size: 2470 byte(s)
Depends on google guava
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 torben 3232 <!-- https://mvnrepository.com/artifact/com.google.guava/guava -->
72     <dependency>
73     <groupId>com.google.guava</groupId>
74     <artifactId>guava</artifactId>
75     <version>25.0-jre</version>
76     </dependency>
77    
78    
79 torben 2456 <dependency><!-- from hoerup artifactory -->
80     <groupId>dk.thoerup</groupId>
81     <artifactId>GenericJavaUtils</artifactId>
82     <version>1.0</version>
83     </dependency>
84    
85    
86     </dependencies>
87    
88    
89     <repositories>
90     <repository>
91     <id>hoerup-releases</id>
92     <name>hoerup-releases</name>
93     <url>http://app.t-hoerup.dk/artifactory/ext-release-local</url>
94     </repository>
95     </repositories>
96    
97     </project>

  ViewVC Help
Powered by ViewVC 1.1.20