Download this file

pom.xml    58 lines (51 with data), 2.1 kB

 1
 2
 3
 4
 5
 6
 7
 8
 9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
<?xml version="1.0" encoding="UTF-8"?>
<project xmlns="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 http://maven.apache.org/xsd/maven-4.0.0.xsd">
<modelVersion>4.0.0</modelVersion>
<parent>
<groupId>pt.caixamagica.parents</groupId>
<artifactId>core</artifactId>
<version>2-beta-1</version>
</parent>
<groupId>net.timbusproject.extractors</groupId>
<artifactId>local-debian-software-extractor</artifactId>
<version>1.0-SNAPSHOT</version>
<name>Local Debian Software Extractor</name>
<packaging>jar</packaging>
<properties>
<project.mainClass>net.timbusproject.extractors.modules.local.debiansoftwareextractor.DebianSoftwareExtractor</project.mainClass>
<plugin.compiler.java.version>1.7</plugin.compiler.java.version>
<springframework.version>3.2.3.RELEASE</springframework.version>
<jettison.version>1.3.4</jettison.version>
</properties>
<dependencies>
<dependency>
<groupId>org.codehaus.jettison</groupId>
<artifactId>jettison</artifactId>
<version>${jettison.version}</version>
<!--<scope>compile</scope>-->
</dependency>
</dependencies>
<build>
<plugins>
<plugin>
<artifactId>maven-compiler-plugin</artifactId>
</plugin>
<plugin>
<artifactId>maven-assembly-plugin</artifactId>
<configuration>
<appendAssemblyId>false</appendAssemblyId>
<attach>false</attach>
<descriptorRefs><descriptorRef>jar-with-dependencies</descriptorRef></descriptorRefs>
</configuration>
</plugin>
</plugins>
</build>
<repositories>
<repository>
<id>local.repo</id>
<url>http://maven.testbed/</url>
</repository>
</repositories>
</project>