Skip to content

Commit 8a08021

Browse files
committed
#167 new parent 1.33.0
1 parent a0c19c5 commit 8a08021

2 files changed

Lines changed: 19 additions & 43 deletions

File tree

README.md

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,6 @@
88
[![PDD status](http://www.0pdd.com/svg?name=jcabi/jcabi-xml)](http://www.0pdd.com/p?name=jcabi/jcabi-xml)
99
[![codecov](https://codecov.io/gh/jcabi/jcabi-xml/branch/master/graph/badge.svg)](https://codecov.io/gh/jcabi/jcabi-xml)
1010
[![Javadoc](https://javadoc.io/badge/com.jcabi/jcabi-xml.svg)](http://www.javadoc.io/doc/com.jcabi/jcabi-xml)
11-
1211
[![jpeek report](https://i.jpeek.org/com.jcabi/jcabi-xml/badge.svg)](https://i.jpeek.org/com.jcabi/jcabi-xml/)
1312
[![Maven Central](https://maven-badges.herokuapp.com/maven-central/com.jcabi/jcabi-xml/badge.svg)](https://maven-badges.herokuapp.com/maven-central/com.jcabi/jcabi-xml)
1413

pom.xml

Lines changed: 19 additions & 42 deletions
Original file line numberDiff line numberDiff line change
@@ -33,7 +33,7 @@ OF THE POSSIBILITY OF SUCH DAMAGE.
3333
<parent>
3434
<groupId>com.jcabi</groupId>
3535
<artifactId>jcabi</artifactId>
36-
<version>1.30.0</version>
36+
<version>1.33.0</version>
3737
</parent>
3838
<artifactId>jcabi-xml</artifactId>
3939
<version>1.0-SNAPSHOT</version>
@@ -62,10 +62,12 @@ OF THE POSSIBILITY OF SUCH DAMAGE.
6262
<dependency>
6363
<groupId>com.jcabi</groupId>
6464
<artifactId>jcabi-log</artifactId>
65+
<version>0.20.0</version>
6566
</dependency>
6667
<dependency>
6768
<groupId>org.projectlombok</groupId>
6869
<artifactId>lombok</artifactId>
70+
<version>1.18.20</version>
6971
</dependency>
7072
<dependency>
7173
<groupId>org.cactoos</groupId>
@@ -75,16 +77,19 @@ OF THE POSSIBILITY OF SUCH DAMAGE.
7577
<dependency>
7678
<groupId>com.jcabi</groupId>
7779
<artifactId>jcabi-matchers</artifactId>
80+
<version>1.5.3</version>
7881
<scope>test</scope>
7982
</dependency>
8083
<dependency>
8184
<groupId>org.apache.commons</groupId>
8285
<artifactId>commons-lang3</artifactId>
86+
<version>3.12.0</version>
8387
<scope>test</scope>
8488
</dependency>
8589
<dependency>
8690
<groupId>com.google.guava</groupId>
8791
<artifactId>guava</artifactId>
92+
<version>30.1.1-jre</version>
8893
<scope>test</scope>
8994
</dependency>
9095
<dependency>
@@ -100,6 +105,18 @@ OF THE POSSIBILITY OF SUCH DAMAGE.
100105
<version>1.4.01</version>
101106
<scope>provided</scope>
102107
</dependency>
108+
<dependency>
109+
<groupId>log4j</groupId>
110+
<artifactId>log4j</artifactId>
111+
<version>1.2.17</version>
112+
<scope>test</scope>
113+
</dependency>
114+
<dependency>
115+
<groupId>org.slf4j</groupId>
116+
<artifactId>slf4j-log4j12</artifactId>
117+
<version>2.0.0-alpha5</version>
118+
<scope>test</scope>
119+
</dependency>
103120
</dependencies>
104121
<profiles>
105122
<profile>
@@ -109,6 +126,7 @@ OF THE POSSIBILITY OF SUCH DAMAGE.
109126
<plugin>
110127
<groupId>com.qulice</groupId>
111128
<artifactId>qulice-maven-plugin</artifactId>
129+
<version>0.19.0</version>
112130
<configuration>
113131
<excludes combine.children="append">
114132
<exclude>xml:/src/it/settings.xml</exclude>
@@ -120,46 +138,5 @@ OF THE POSSIBILITY OF SUCH DAMAGE.
120138
</plugins>
121139
</build>
122140
</profile>
123-
<profile>
124-
<id>jacoco</id>
125-
<build>
126-
<plugins>
127-
<plugin>
128-
<groupId>org.jacoco</groupId>
129-
<artifactId>jacoco-maven-plugin</artifactId>
130-
<version>0.8.7</version>
131-
<configuration>
132-
<output>file</output>
133-
</configuration>
134-
<executions>
135-
<execution>
136-
<id>jacoco-initialize</id>
137-
<goals>
138-
<goal>prepare-agent</goal>
139-
</goals>
140-
</execution>
141-
<execution>
142-
<id>jacoco-initialize-integration</id>
143-
<goals>
144-
<goal>prepare-agent-integration</goal>
145-
</goals>
146-
</execution>
147-
<execution>
148-
<id>jacoco-report</id>
149-
<goals>
150-
<goal>report</goal>
151-
</goals>
152-
</execution>
153-
<execution>
154-
<id>jacoco-report-integration</id>
155-
<goals>
156-
<goal>report-integration</goal>
157-
</goals>
158-
</execution>
159-
</executions>
160-
</plugin>
161-
</plugins>
162-
</build>
163-
</profile>
164141
</profiles>
165142
</project>

0 commit comments

Comments
 (0)