Skip to content

Commit 83577ab

Browse files
author
MerkushevKirill
committed
rft - turn off pmd plugins, add more info to pom
1 parent f84ccec commit 83577ab

File tree

3 files changed

+87
-106
lines changed

3 files changed

+87
-106
lines changed

.gitignore

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1 +1,3 @@
11
target
2+
.idea
3+
*.iml

README.md

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,3 @@
1-
[![Build Status](https://travis-ci.org/VerbalExpressions/JavaVerbalExpressions.png)](https://travis-ci.org/VerbalExpressions/JavaVerbalExpressions)
21
JavaVerbalExpressions
32
=====================
43
VerbalExpressions is a Java library that helps to construct difficult regular expressions - ported from the wonderful [JSVerbalExpressions](https://github.com/VerbalExpressions/JSVerbalExpressions).

pom.xml

Lines changed: 85 additions & 105 deletions
Original file line numberDiff line numberDiff line change
@@ -1,114 +1,94 @@
11
<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+
<parent>
5+
<groupId>org.sonatype.oss</groupId>
6+
<artifactId>oss-parent</artifactId>
7+
<version>9</version>
8+
</parent>
49

5-
<groupId>ru.lanwen.verbalexpressions</groupId>
6-
<artifactId>java-verbal-expressions</artifactId>
7-
<version>1.0-SNAPSHOT</version>
8-
<packaging>jar</packaging>
10+
<groupId>ru.lanwen.verbalexpressions</groupId>
11+
<artifactId>java-verbal-expressions</artifactId>
12+
<version>1.0-SNAPSHOT</version>
13+
<packaging>jar</packaging>
914

10-
<name>JavaVerbalExpressions</name>
11-
<url>https://github.com/lanwen/JavaVerbalExpressions</url>
15+
<name>JavaVerbalExpressions</name>
16+
<description>VerbalExpressions is a Java library that helps to construct difficult regular expressions -
17+
ported from the wonderful JSVerbalExpressions
18+
</description>
19+
<url>https://github.com/lanwen/JavaVerbalExpressions</url>
1220

13-
<properties>
14-
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
15-
</properties>
1621

22+
<properties>
23+
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
24+
</properties>
1725

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>
6726

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>
27+
<scm>
28+
<url>https://github.com/lanwen/JavaVerbalExpressions.git</url>
29+
<connection>[email protected]:lanwen/JavaVerbalExpressions.git</connection>
30+
<developerConnection>[email protected]:lanwen/JavaVerbalExpressions.git</developerConnection>
31+
</scm>
10632

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>
33+
34+
<licenses>
35+
<license>
36+
<name>The MIT License (MIT)</name>
37+
<url>https://github.com/lanwen/JavaVerbalExpressions/blob/master/LICENSE</url>
38+
<distribution>repo</distribution>
39+
</license>
40+
</licenses>
41+
42+
<developers>
43+
<developer>
44+
<id>EmilS</id>
45+
</developer>
46+
</developers>
47+
48+
<dependencies>
49+
<dependency>
50+
<groupId>junit</groupId>
51+
<artifactId>junit</artifactId>
52+
<version>4.11</version>
53+
<scope>test</scope>
54+
</dependency>
55+
</dependencies>
56+
57+
58+
<build>
59+
<plugins>
60+
<plugin>
61+
<artifactId>maven-compiler-plugin</artifactId>
62+
<version>3.1</version>
63+
<inherited>true</inherited>
64+
<configuration>
65+
<source>1.7</source>
66+
<target>1.7</target>
67+
<encoding>utf-8</encoding>
68+
</configuration>
69+
</plugin>
70+
<plugin>
71+
<groupId>org.codehaus.mojo</groupId>
72+
<artifactId>cobertura-maven-plugin</artifactId>
73+
<version>2.6</version>
74+
<executions>
75+
<execution>
76+
<goals>
77+
<goal>clean</goal>
78+
</goals>
79+
</execution>
80+
</executions>
81+
</plugin>
82+
</plugins>
83+
</build>
84+
85+
<reporting>
86+
<plugins>
87+
<plugin>
88+
<groupId>org.codehaus.mojo</groupId>
89+
<artifactId>cobertura-maven-plugin</artifactId>
90+
<version>2.6</version>
91+
</plugin>
92+
</plugins>
93+
</reporting>
11494
</project>

0 commit comments

Comments
 (0)