~ubuntu-branches/ubuntu/vivid/jayatana/vivid

« back to all changes in this revision

Viewing changes to jayatanaag/pom.xml

  • Committer: Package Import Robot
  • Author(s): Jared González
  • Date: 2014-12-10 17:38:15 UTC
  • Revision ID: package-import@ubuntu.com-20141210173815-8k4hm3bd481qkt63
Tags: upstream-2.7
Import upstream version 2.7

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
<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 http://maven.apache.org/xsd/maven-4.0.0.xsd">
 
3
        <modelVersion>4.0.0</modelVersion>
 
4
        <groupId>jarego.software</groupId>
 
5
        <artifactId>jayatanaag</artifactId>
 
6
        <version>2.7</version>
 
7
        <name>JAyatana Agent</name>
 
8
        
 
9
        <developers>
 
10
                <developer>
 
11
                        <name>Jared González</name>
 
12
                        <email>danjaredg@gmail.com</email>
 
13
                </developer>
 
14
        </developers>
 
15
        
 
16
        <properties>
 
17
                <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
 
18
        </properties>
 
19
        
 
20
        <profiles>
 
21
                <profile>
 
22
                        <id>linux-amd64</id>
 
23
                        <activation>
 
24
                                <os>
 
25
                                        <family>Linux</family>
 
26
                                        <arch>amd64</arch>
 
27
                                </os>
 
28
                        </activation>
 
29
                        <properties>
 
30
                                <JAVA.ARCH>amd64</JAVA.ARCH>
 
31
                        </properties>
 
32
                </profile>
 
33
                <profile>
 
34
                        <id>linux-i386</id>
 
35
                        <activation>
 
36
                                <os>
 
37
                                        <family>Linux</family>
 
38
                                        <arch>i386</arch>
 
39
                                </os>
 
40
                        </activation>
 
41
                        <properties>
 
42
                                <JAVA.ARCH>i386</JAVA.ARCH>
 
43
                        </properties>
 
44
                </profile>
 
45
        </profiles>
 
46
        
 
47
        <build>
 
48
                <finalName>${project.artifactId}</finalName>
 
49
                <plugins>
 
50
                        <plugin>
 
51
                                <groupId>org.apache.maven.plugins</groupId>
 
52
                                <artifactId>maven-compiler-plugin</artifactId>
 
53
                                <version>3.1</version>
 
54
                                <configuration>
 
55
                                        <source>1.4</source>
 
56
                                        <target>1.4</target>
 
57
                                        <executable>/usr/lib/jvm/java-7-openjdk-${JAVA.ARCH}/bin/javac</executable>
 
58
                                </configuration>
 
59
                        </plugin>
 
60
                        <plugin>
 
61
                                <groupId>org.apache.maven.plugins</groupId>
 
62
                                <artifactId>maven-jar-plugin</artifactId>
 
63
                                <version>2.4</version>
 
64
                                <configuration>
 
65
                                        <archive>
 
66
                                                <manifestEntries>
 
67
                                                        <Premain-Class>com.jarego.jayatana.Agent</Premain-Class>
 
68
                                                </manifestEntries>
 
69
                                        </archive>
 
70
                                </configuration>
 
71
                        </plugin>
 
72
                        <plugin>
 
73
                                <groupId>org.apache.maven.plugins</groupId>
 
74
                                <artifactId>maven-surefire-plugin</artifactId>
 
75
                                <version>2.16</version>
 
76
                                <configuration>
 
77
                                        <skipTests>true</skipTests>
 
78
                                </configuration>
 
79
                        </plugin>
 
80
                </plugins>
 
81
        </build>
 
82
</project>