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

Contents of /miscJava/thn_mqutils/pom.xml

Parent Directory Parent Directory | Revision Log Revision Log


Revision 2738 - (show annotations) (download) (as text)
Fri Oct 2 10:14:15 2015 UTC (8 years, 7 months ago) by torben
File MIME type: text/xml
File size: 3396 byte(s)
use maven to build this
1 <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.daoas</groupId>
9 <artifactId>thn_mqutils</artifactId>
10 <version>1.0</version>
11
12 <properties>
13 <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
14 </properties>
15
16 <build>
17 <plugins>
18 <plugin>
19 <groupId>org.apache.maven.plugins</groupId>
20 <artifactId>maven-compiler-plugin</artifactId>
21 <version>3.1</version>
22 <configuration>
23 <source>1.7</source>
24 <target>1.7</target>
25 <showWarnings>true</showWarnings>
26 <showDeprecation>true</showDeprecation>
27 </configuration>
28 <!--Do NOT show depreciation in test compile-->
29 <executions>
30 <execution>
31 <id>default-testCompile</id>
32 <phase>test-compile</phase>
33 <configuration>
34 <showDeprecation>false</showDeprecation>
35 </configuration>
36 <goals>
37 <goal>testCompile</goal>
38 </goals>
39 </execution>
40 </executions>
41 </plugin>
42 <plugin>
43 <groupId>org.apache.maven.plugins</groupId>
44 <artifactId>maven-jar-plugin</artifactId>
45 <version>2.5</version>
46 <configuration>
47 <archive>
48 <index>true</index>
49 <manifest>
50 <mainClass>com.traiana.utils.mq.MQDepth</mainClass>
51 <addClasspath>true</addClasspath>
52 </manifest>
53 </archive>
54 </configuration>
55 </plugin>
56
57
58 <plugin>
59 <groupId>org.apache.maven.plugins</groupId>
60 <artifactId>maven-dependency-plugin</artifactId>
61 <executions>
62 <execution>
63 <id>copy-dependencies</id>
64 <phase>package</phase>
65 <goals>
66 <goal>copy-dependencies</goal>
67 </goals>
68 <configuration>
69 <outputDirectory>${project.build.directory}</outputDirectory>
70 <overWriteReleases>false</overWriteReleases>
71 <overWriteSnapshots>false</overWriteSnapshots>
72 <overWriteIfNewer>true</overWriteIfNewer>
73 </configuration>
74 </execution>
75 </executions>
76 <configuration>
77 <outputDirectory>
78 ${project.build.directory}
79 </outputDirectory>
80 </configuration>
81 </plugin>
82
83 </plugins>
84 </build>
85
86
87 <dependencies>
88
89
90 <dependency>
91 <groupId>com.ibm.mq</groupId>
92 <artifactId>commonservices</artifactId>
93 <version>1</version>
94 </dependency>
95
96 <dependency>
97 <groupId>com.ibm.mq</groupId>
98 <artifactId>headers</artifactId>
99 <version>1</version>
100 </dependency>
101
102 <dependency>
103 <groupId>com.ibm.mq</groupId>
104 <artifactId>mq</artifactId>
105 <version>1</version>
106 </dependency>
107
108 <dependency>
109 <groupId>com.ibm.mq</groupId>
110 <artifactId>connector</artifactId>
111 <version>1</version>
112 </dependency>
113
114 <dependency>
115 <groupId>com.ibm.mq</groupId>
116 <artifactId>jmqi</artifactId>
117 <version>1</version>
118 </dependency>
119
120 </dependencies>
121
122
123 </project>

  ViewVC Help
Powered by ViewVC 1.1.20