|
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/xsd/maven-4.0.0.xsd"> |
3 |
| - <modelVersion>4.0.0</modelVersion> |
| 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 | 4 |
|
5 | 5 | <groupId>ru.lanwen.verbalexpressions</groupId>
|
6 | 6 | <artifactId>java-verbal-expressions</artifactId>
|
|
10 | 10 | <name>JavaVerbalExpressions</name>
|
11 | 11 | <url>https://github.com/lanwen/JavaVerbalExpressions</url>
|
12 | 12 |
|
13 |
| - <properties> |
14 |
| - <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding> |
15 |
| - </properties> |
| 13 | + <properties> |
| 14 | + <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding> |
| 15 | + </properties> |
16 | 16 |
|
17 |
| - |
18 |
| - <scm> |
19 |
| - < connection> [email protected]:VerbalExpressions/JavaVerbalExpressions.git</ connection> |
20 |
| - </scm> |
21 |
| - <dependencies> |
22 |
| - <dependency> |
23 |
| - <groupId>junit</groupId> |
24 |
| - <artifactId>junit</artifactId> |
25 |
| - <version>4.11</version> |
26 |
| - <scope>test</scope> |
27 |
| - </dependency> |
28 |
| - </dependencies> |
29 |
| - <build> |
30 |
| - <plugins> |
31 |
| - <plugin> |
32 |
| - <artifactId>maven-compiler-plugin</artifactId> |
33 |
| - <version>3.1</version> |
34 |
| - <inherited>true</inherited> |
35 |
| - <configuration> |
36 |
| - <source>1.6</source> |
37 |
| - <target>1.6</target> |
38 |
| - <encoding>utf-8</encoding> |
39 |
| - </configuration> |
40 |
| - </plugin> |
41 |
| - </plugins> |
42 |
| - </build> |
| 17 | + |
| 18 | + <scm> |
| 19 | + < connection>scm: [email protected]:VerbalExpressions/JavaVerbalExpressions.git</ connection> |
| 20 | + </scm> |
| 21 | + <dependencies> |
| 22 | + <dependency> |
| 23 | + <groupId>junit</groupId> |
| 24 | + <artifactId>junit</artifactId> |
| 25 | + <version>4.11</version> |
| 26 | + <scope>test</scope> |
| 27 | + </dependency> |
| 28 | + </dependencies> |
| 29 | + <build> |
| 30 | + <plugins> |
| 31 | + <plugin> |
| 32 | + <artifactId>maven-compiler-plugin</artifactId> |
| 33 | + <version>3.1</version> |
| 34 | + <inherited>true</inherited> |
| 35 | + <configuration> |
| 36 | + <source>1.6</source> |
| 37 | + <target>1.6</target> |
| 38 | + <encoding>utf-8</encoding> |
| 39 | + </configuration> |
| 40 | + </plugin> |
| 41 | + <plugin> |
| 42 | + <groupId>org.codehaus.mojo</groupId> |
| 43 | + <artifactId>cobertura-maven-plugin</artifactId> |
| 44 | + <version>2.6</version> |
| 45 | + <executions> |
| 46 | + <execution> |
| 47 | + <!-- <phase>site</phase> --> |
| 48 | + <goals> |
| 49 | + <goal>clean</goal> |
| 50 | + </goals> |
| 51 | + </execution> |
| 52 | + </executions> |
| 53 | + <!-- <configuration> --> |
| 54 | + <!-- <instrumentation> --> |
| 55 | + <!-- <ignores> --> |
| 56 | + <!-- <ignore>com.example.boringcode.*</ignore> --> |
| 57 | + <!-- </ignores> --> |
| 58 | + <!-- <excludes> --> |
| 59 | + <!-- <exclude>com/example/dullcode/**/*.class</exclude> --> |
| 60 | + <!-- <exclude>com/example/**/*Test.class</exclude> --> |
| 61 | + <!-- </excludes> --> |
| 62 | + <!-- </instrumentation> --> |
| 63 | + <!-- </configuration> --> |
| 64 | + </plugin> |
| 65 | + </plugins> |
| 66 | + </build> |
| 67 | + |
| 68 | + <reporting> |
| 69 | + <plugins> |
| 70 | + <plugin> |
| 71 | + <groupId>org.apache.maven.plugins</groupId> |
| 72 | + <artifactId>maven-pmd-plugin</artifactId> |
| 73 | + <version>3.0.1</version> |
| 74 | + <configuration> |
| 75 | + <linkXref>true</linkXref> |
| 76 | + <sourceEncoding>utf-8</sourceEncoding> |
| 77 | + <minimumTokens>100</minimumTokens> |
| 78 | + <targetJdk>1.5</targetJdk> |
| 79 | + <excludes> |
| 80 | + <exclude>**/*Bean.java</exclude> |
| 81 | + <exclude>**/generated/*.java</exclude> |
| 82 | + </excludes> |
| 83 | + <excludeRoots> |
| 84 | + <excludeRoot>target/generated-sources/stubs</excludeRoot> |
| 85 | + </excludeRoots> |
| 86 | + </configuration> |
| 87 | + </plugin> |
| 88 | + <plugin> |
| 89 | + <groupId>org.apache.maven.plugins</groupId> |
| 90 | + <artifactId>maven-pmd-plugin</artifactId> |
| 91 | + <version>3.0.1</version> |
| 92 | + <configuration> |
| 93 | + <linkXref>true</linkXref> |
| 94 | + <sourceEncoding>utf-8</sourceEncoding> |
| 95 | + <minimumTokens>100</minimumTokens> |
| 96 | + <targetJdk>1.7</targetJdk> |
| 97 | + <!-- <excludes> --> |
| 98 | + <!-- <exclude>**/*Bean.java</exclude> --> |
| 99 | + <!-- <exclude>**/generated/*.java</exclude> --> |
| 100 | + <!-- </excludes> --> |
| 101 | + <!-- <excludeRoots> --> |
| 102 | + <!-- <excludeRoot>target/generated-sources/stubs</excludeRoot> --> |
| 103 | + <!-- </excludeRoots> --> |
| 104 | + </configuration> |
| 105 | + </plugin> |
| 106 | + |
| 107 | + <plugin> |
| 108 | + <groupId>org.codehaus.mojo</groupId> |
| 109 | + <artifactId>cobertura-maven-plugin</artifactId> |
| 110 | + <version>2.6</version> |
| 111 | + </plugin> |
| 112 | + </plugins> |
| 113 | + </reporting> |
43 | 114 | </project>
|
0 commit comments