Skip to content

Commit c7fced0

Browse files
committed
Sort pom properties
1 parent 3102437 commit c7fced0

File tree

3 files changed

+36
-36
lines changed

3 files changed

+36
-36
lines changed

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@
1111
The project is still in development phase***.
1212

1313
- [ ] Documentation
14-
- [ ] Tests
14+
- [x] Tests
1515
- [ ] Releasing to maven
1616

1717
## Usage

httpsnippet/pom.xml

Lines changed: 25 additions & 25 deletions
Original file line numberDiff line numberDiff line change
@@ -27,6 +27,12 @@
2727
<artifactId>har-java</artifactId>
2828
<version>${har-java.version}</version>
2929
</dependency>
30+
<dependency>
31+
<groupId>commons-io</groupId>
32+
<artifactId>commons-io</artifactId>
33+
<version>${commons-io.version}</version>
34+
<scope>test</scope>
35+
</dependency>
3036
<dependency>
3137
<groupId>org.apache.commons</groupId>
3238
<artifactId>commons-lang3</artifactId>
@@ -86,16 +92,29 @@
8692
<version>${slf4j.version}</version>
8793
<scope>test</scope>
8894
</dependency>
89-
<dependency>
90-
<groupId>commons-io</groupId>
91-
<artifactId>commons-io</artifactId>
92-
<version>${commons-io.version}</version>
93-
<scope>test</scope>
94-
</dependency>
9595
</dependencies>
9696

9797
<build>
9898
<plugins>
99+
<plugin>
100+
<groupId>org.codehaus.mojo</groupId>
101+
<artifactId>cobertura-maven-plugin</artifactId>
102+
<version>${cobertura-maven-plugin.version}</version>
103+
<dependencies>
104+
<dependency>
105+
<groupId>org.ow2.asm</groupId>
106+
<artifactId>asm</artifactId>
107+
<version>5.0.3</version>
108+
</dependency>
109+
</dependencies>
110+
<configuration>
111+
<formats>
112+
<format>html</format>
113+
<format>xml</format>
114+
</formats>
115+
<check />
116+
</configuration>
117+
</plugin>
99118
<plugin>
100119
<groupId>org.eluder.coveralls</groupId>
101120
<artifactId>coveralls-maven-plugin</artifactId>
@@ -126,25 +145,6 @@
126145
</execution>
127146
</executions>
128147
</plugin>
129-
<plugin>
130-
<groupId>org.codehaus.mojo</groupId>
131-
<artifactId>cobertura-maven-plugin</artifactId>
132-
<version>${cobertura-maven-plugin.version}</version>
133-
<configuration>
134-
<formats>
135-
<format>html</format>
136-
<format>xml</format>
137-
</formats>
138-
<check />
139-
</configuration>
140-
<dependencies>
141-
<dependency>
142-
<groupId>org.ow2.asm</groupId>
143-
<artifactId>asm</artifactId>
144-
<version>5.0.3</version>
145-
</dependency>
146-
</dependencies>
147-
</plugin>
148148
</plugins>
149149
</build>
150150

pom.xml

Lines changed: 10 additions & 10 deletions
Original file line numberDiff line numberDiff line change
@@ -41,10 +41,14 @@
4141
<build-number-maven-plugin.version>1.4</build-number-maven-plugin.version>
4242
<checksum-maven-plugin.version>1.8</checksum-maven-plugin.version>
4343
<clover-maven-plugin.version>4.3.1</clover-maven-plugin.version>
44-
<commons-lang3.version>3.8.1</commons-lang3.version>
44+
<cobertura-maven-plugin.version>2.7</cobertura-maven-plugin.version>
45+
<codecov.token>${env.CODECOV_TOKEN}</codecov.token>
4546
<commons-io.version>2.4</commons-io.version>
47+
<commons-lang3.version>3.8.1</commons-lang3.version>
4648
<commons-text.version>1.6</commons-text.version>
4749
<copy-rename-maven-plugin.version>1.0.1</copy-rename-maven-plugin.version>
50+
<coveralls-maven-plugin.version>4.3.0</coveralls-maven-plugin.version>
51+
<coveralls.token>${env.COVERALLS_REPO_TOKEN}</coveralls.token>
4852
<dependency-check-maven.version>5.0.0-M2</dependency-check-maven.version>
4953
<dockerfile-maven-plugin.version>1.4.10</dockerfile-maven-plugin.version>
5054
<error_prone_core.version>2.3.2</error_prone_core.version>
@@ -108,10 +112,6 @@
108112
<springfox.version>2.9.2</springfox.version>
109113
<versions-maven-plugin.version>2.7</versions-maven-plugin.version>
110114
<xml-format-maven-plugin.version>3.0.7</xml-format-maven-plugin.version>
111-
<coveralls-maven-plugin.version>4.3.0</coveralls-maven-plugin.version>
112-
<codecov.token>${env.CODECOV_TOKEN}</codecov.token>
113-
<coveralls.token>${env.COVERALLS_REPO_TOKEN}</coveralls.token>
114-
<cobertura-maven-plugin.version>2.7</cobertura-maven-plugin.version>
115115
</properties>
116116

117117
<dependencyManagement>
@@ -515,6 +515,11 @@
515515
<artifactId>versions-maven-plugin</artifactId>
516516
<version>${versions-maven-plugin.version}</version>
517517
</plugin>
518+
<plugin>
519+
<groupId>org.eluder.coveralls</groupId>
520+
<artifactId>coveralls-maven-plugin</artifactId>
521+
<version>${coveralls-maven-plugin.version}</version>
522+
</plugin>
518523
<plugin>
519524
<groupId>org.jacoco</groupId>
520525
<artifactId>jacoco-maven-plugin</artifactId>
@@ -602,11 +607,6 @@
602607
</validationProperties>
603608
</configuration>
604609
</plugin>
605-
<plugin>
606-
<groupId>org.eluder.coveralls</groupId>
607-
<artifactId>coveralls-maven-plugin</artifactId>
608-
<version>${coveralls-maven-plugin.version}</version>
609-
</plugin>
610610
</plugins>
611611
</pluginManagement>
612612
</build>

0 commit comments

Comments
 (0)