Skip to content

Commit

Permalink
#106 versions up
Browse files Browse the repository at this point in the history
  • Loading branch information
yegor256 committed Aug 22, 2022
1 parent 8b387d8 commit 69b9727
Showing 1 changed file with 9 additions and 6 deletions.
15 changes: 9 additions & 6 deletions pom.xml
Expand Up @@ -87,6 +87,9 @@ OF THE POSSIBILITY OF SUCH DAMAGE.
<url>https://github.com/yegor256/xembly</url>
</site>
</distributionManagement>
<properties>
<argLine/>
</properties>
<dependencies>
<dependency>
<groupId>org.projectlombok</groupId>
Expand All @@ -101,13 +104,13 @@ OF THE POSSIBILITY OF SUCH DAMAGE.
<dependency>
<groupId>org.mockito</groupId>
<artifactId>mockito-core</artifactId>
<version>4.6.1</version>
<version>4.7.0</version>
<scope>test</scope>
</dependency>
<dependency>
<groupId>xml-apis</groupId>
<artifactId>xml-apis</artifactId>
<version>1.0.b2</version>
<version>2.0.2</version>
<scope>provided</scope>
</dependency>
<dependency>
Expand All @@ -125,7 +128,7 @@ OF THE POSSIBILITY OF SUCH DAMAGE.
<dependency>
<groupId>com.jcabi</groupId>
<artifactId>jcabi-log</artifactId>
<version>0.21.0</version>
<version>0.22.0</version>
<scope>test</scope>
</dependency>
<dependency>
Expand All @@ -137,7 +140,7 @@ OF THE POSSIBILITY OF SUCH DAMAGE.
<dependency>
<groupId>com.jcabi</groupId>
<artifactId>jcabi-xml</artifactId>
<version>0.24.0</version>
<version>0.25.0</version>
<scope>test</scope>
</dependency>
<dependency>
Expand Down Expand Up @@ -201,7 +204,7 @@ OF THE POSSIBILITY OF SUCH DAMAGE.
<plugin>
<artifactId>maven-surefire-plugin</artifactId>
<configuration>
<argLine>-Djava.awt.headless=true</argLine>
<argLine>@{argLine} -Djava.awt.headless=true</argLine>
</configuration>
</plugin>
<plugin>
Expand Down Expand Up @@ -275,7 +278,7 @@ OF THE POSSIBILITY OF SUCH DAMAGE.
<includes>
<include>**/*ProfTest.java</include>
</includes>
<argLine>-agentpath:/Users/yegor/apps/YourKit_Java_Profiler_2013_build_13044.app/bin/mac/libyjpagent.jnilib=sampling,monitors,onexit=memory,onexit=snapshot,dir=${project.build.directory}</argLine>
<argLine>@{argLine} -agentpath:/Users/yegor/apps/YourKit_Java_Profiler_2013_build_13044.app/bin/mac/libyjpagent.jnilib=sampling,monitors,onexit=memory,onexit=snapshot,dir=${project.build.directory}</argLine>
</configuration>
</execution>
</executions>
Expand Down

0 comments on commit 69b9727

Please sign in to comment.