|
1 | 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/maven-v4_0_0.xsd"> |
3 | | - <modelVersion>4.0.0</modelVersion> |
4 | | - <groupId>com.pl.tagc</groupId> |
5 | | - <artifactId>PL5-2016</artifactId> |
6 | | - <packaging>pom</packaging> |
7 | | - <version>0.0.1-SNAPSHOT</version> |
8 | | - <modules> |
9 | | - <module>backEnd</module> |
10 | | - <module>tagcwebapp</module> |
11 | | - </modules> |
12 | | - <name>PL5-2016</name> |
13 | | - <dependencies> |
14 | | - <dependency> |
15 | | - <groupId>junit</groupId> |
16 | | - <artifactId>junit</artifactId> |
17 | | - <version>4.8.2</version> |
18 | | - <scope>test</scope> |
19 | | - </dependency> |
20 | | - <dependency> |
21 | | - <groupId>com.sun.jersey</groupId> |
22 | | - <artifactId>jersey-client</artifactId> |
23 | | - <version>${jersey-version}</version> |
24 | | - <scope>test</scope> |
25 | | - </dependency> |
26 | | - </dependencies> |
27 | | - <build> |
28 | | - <plugins> |
29 | | - <plugin> |
30 | | - <groupId>org.apache.maven.plugins</groupId> |
31 | | - <artifactId>maven-compiler-plugin</artifactId> |
32 | | - <inherited>true</inherited> |
33 | | - <configuration> |
34 | | - <source>1.8</source> |
35 | | - <target>1.8</target> |
36 | | - </configuration> |
37 | | - </plugin> |
38 | | - <plugin> |
39 | | - <groupId>org.codehaus.mojo</groupId> |
40 | | - <artifactId>exec-maven-plugin</artifactId> |
41 | | - <version>1.1</version> |
42 | | - <executions> |
43 | | - <execution> |
44 | | - <goals> |
45 | | - <goal>java</goal> |
46 | | - </goals> |
47 | | - </execution> |
48 | | - </executions> |
49 | | - </plugin> |
50 | | - </plugins> |
51 | | - </build> |
52 | | - <properties> |
53 | | - <jersey-version>1.19.1</jersey-version> |
54 | | - </properties> |
55 | | - <reporting> |
56 | | - <plugins> |
57 | | - <plugin> |
| 2 | + xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/maven-v4_0_0.xsd"> |
| 3 | + <modelVersion>4.0.0</modelVersion> |
| 4 | + <groupId>com.pl.tagc</groupId> |
| 5 | + <artifactId>PL5-2016</artifactId> |
| 6 | + <packaging>pom</packaging> |
| 7 | + <version>0.0.1-SNAPSHOT</version> |
| 8 | + <modules> |
| 9 | + <module>backEnd</module> |
| 10 | + <module>tagcwebapp</module> |
| 11 | + </modules> |
| 12 | + <name>PL5-2016</name> |
| 13 | + <dependencies> |
| 14 | + <dependency> |
| 15 | + <groupId>junit</groupId> |
| 16 | + <artifactId>junit</artifactId> |
| 17 | + <version>4.8.2</version> |
| 18 | + <scope>test</scope> |
| 19 | + </dependency> |
| 20 | + <dependency> |
| 21 | + <groupId>com.sun.jersey</groupId> |
| 22 | + <artifactId>jersey-client</artifactId> |
| 23 | + <version>${jersey-version}</version> |
| 24 | + <scope>test</scope> |
| 25 | + </dependency> |
| 26 | + </dependencies> |
| 27 | + <build> |
| 28 | + <plugins> |
| 29 | + <plugin> |
| 30 | + <groupId>org.apache.maven.plugins</groupId> |
| 31 | + <artifactId>maven-compiler-plugin</artifactId> |
| 32 | + <inherited>true</inherited> |
| 33 | + <configuration> |
| 34 | + <source>1.8</source> |
| 35 | + <target>1.8</target> |
| 36 | + </configuration> |
| 37 | + </plugin> |
| 38 | + <plugin> |
| 39 | + <artifactId>maven-assembly-plugin</artifactId> |
| 40 | + <version>2.5.3</version> |
| 41 | + <configuration> |
| 42 | + <archive> |
| 43 | + <manifest> |
| 44 | + <mainClass>com.pl.tagc.tagcwebap.Main</mainClass> |
| 45 | + </manifest> |
| 46 | + </archive> |
| 47 | + <descriptor>depmerge.xml</descriptor> |
| 48 | + </configuration> |
| 49 | + </plugin> |
| 50 | + <plugin> |
| 51 | + <groupId>org.codehaus.mojo</groupId> |
| 52 | + <artifactId>exec-maven-plugin</artifactId> |
| 53 | + <version>1.1</version> |
| 54 | + <executions> |
| 55 | + <execution> |
| 56 | + <goals> |
| 57 | + <goal>java</goal> |
| 58 | + </goals> |
| 59 | + </execution> |
| 60 | + </executions> |
| 61 | + </plugin> |
| 62 | + </plugins> |
| 63 | + </build> |
| 64 | + <properties> |
| 65 | + <jersey-version>1.19.1</jersey-version> |
| 66 | + </properties> |
| 67 | + <reporting> |
| 68 | + <plugins> |
| 69 | + <plugin> |
58 | 70 | <groupId>org.apache.maven.plugins</groupId> |
59 | 71 | <artifactId>maven-javadoc-plugin</artifactId> |
60 | 72 | <version>2.10.1</version> |
|
70 | 82 | </reportSet> |
71 | 83 | </reportSets> |
72 | 84 | </plugin> |
73 | | - <plugin> |
| 85 | + <plugin> |
74 | 86 | <groupId>org.apache.maven.plugins</groupId> |
75 | 87 | <artifactId>maven-checkstyle-plugin</artifactId> |
76 | 88 | <configuration> |
|
86 | 98 | <includeTests>true</includeTests> |
87 | 99 | </configuration> |
88 | 100 | </plugin> |
89 | | - <plugin> |
90 | | - <groupId>org.codehaus.mojo</groupId> |
91 | | - <artifactId>cobertura-maven-plugin</artifactId> |
92 | | - <version>2.7</version> |
93 | | - </plugin> |
94 | | - <plugin> |
| 101 | + <plugin> |
| 102 | + <groupId>org.codehaus.mojo</groupId> |
| 103 | + <artifactId>cobertura-maven-plugin</artifactId> |
| 104 | + <version>2.7</version> |
| 105 | + </plugin> |
| 106 | + <plugin> |
95 | 107 | <groupId>org.codehaus.mojo</groupId> |
96 | 108 | <artifactId>findbugs-maven-plugin</artifactId> |
97 | 109 | <configuration> |
98 | | - <xmlOutput>true</xmlOutput> |
| 110 | + <xmlOutput>true</xmlOutput> |
99 | 111 | <includeTests>true</includeTests> |
100 | | - </configuration> |
| 112 | + </configuration> |
101 | 113 | </plugin> |
102 | | - </plugins> |
103 | | - </reporting> |
| 114 | + </plugins> |
| 115 | + </reporting> |
104 | 116 | </project> |
0 commit comments