Skip to content

Commit

Permalink
Sort POM file (#120)
Browse files Browse the repository at this point in the history
  • Loading branch information
basil authored Apr 26, 2024
1 parent 60028fe commit 62c147a
Showing 1 changed file with 44 additions and 44 deletions.
88 changes: 44 additions & 44 deletions pom.xml
Original file line number Diff line number Diff line change
@@ -1,20 +1,35 @@
<?xml version="1.0" encoding="UTF-8"?>
<project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/maven-v4_0_0.xsd">
<modelVersion>4.0.0</modelVersion>
<parent>
<groupId>org.jenkins-ci</groupId>
<artifactId>jenkins</artifactId>
<version>1.113</version>
<relativePath />
</parent>

<modelVersion>4.0.0</modelVersion>
<groupId>org.jvnet.winp</groupId>
<artifactId>winp</artifactId>
<version>${revision}${changelist}</version>
<name>winp</name>
<description>Kill process tree in Windows</description>
<url>https://github.com/jenkinsci/${project.artifactId}</url>

<licenses>
<license>
<name>MIT License</name>
<url>https://opensource.org/licenses/MIT</url>
<distribution>repo</distribution>
</license>
</licenses>

<scm>
<connection>scm:git:https://github.com/${gitHubRepo}.git</connection>
<developerConnection>scm:git:git@github.com:${gitHubRepo}.git</developerConnection>
<tag>${scmTag}</tag>
<url>https://github.com/${gitHubRepo}</url>
</scm>

<properties>
<revision>1.31</revision>
<changelist>-SNAPSHOT</changelist>
Expand All @@ -25,37 +40,6 @@
<native.configuration>Release</native.configuration>
</properties>

<scm>
<connection>scm:git:https://github.com/${gitHubRepo}.git</connection>
<developerConnection>scm:git:git@github.com:${gitHubRepo}.git</developerConnection>
<url>https://github.com/${gitHubRepo}</url>
<tag>${scmTag}</tag>
</scm>

<build>
<plugins>
<plugin>
<artifactId>maven-jar-plugin</artifactId>
<configuration>
<archive>
<manifest>
<mainClass>org.jvnet.winp.Main</mainClass>
</manifest>
</archive>
</configuration>
</plugin>
<plugin>
<artifactId>maven-surefire-plugin</artifactId>
<configuration>
<argLine>-XX:+CreateCoredumpOnCrash</argLine>
<systemPropertyVariables>
<native.configuration>${native.configuration}</native.configuration>
</systemPropertyVariables>
</configuration>
</plugin>
</plugins>
</build>

<dependencies>
<dependency>
<groupId>com.github.spotbugs</groupId>
Expand Down Expand Up @@ -97,14 +81,6 @@
</dependency>
</dependencies>

<licenses>
<license>
<name>MIT License</name>
<url>https://opensource.org/licenses/MIT</url>
<distribution>repo</distribution>
</license>
</licenses>

<repositories>
<repository>
<id>repo.jenkins-ci.org</id>
Expand All @@ -119,6 +95,30 @@
</pluginRepository>
</pluginRepositories>

<build>
<plugins>
<plugin>
<artifactId>maven-jar-plugin</artifactId>
<configuration>
<archive>
<manifest>
<mainClass>org.jvnet.winp.Main</mainClass>
</manifest>
</archive>
</configuration>
</plugin>
<plugin>
<artifactId>maven-surefire-plugin</artifactId>
<configuration>
<argLine>-XX:+CreateCoredumpOnCrash</argLine>
<systemPropertyVariables>
<native.configuration>${native.configuration}</native.configuration>
</systemPropertyVariables>
</configuration>
</plugin>
</plugins>
</build>

<profiles>
<profile>
<id>build-native</id>
Expand All @@ -141,10 +141,10 @@
<phase>process-resources</phase>
<configuration>
<executable>build.cmd</executable>
<arguments>
<argument>build</argument>
<argument>${native.configuration}</argument>
</arguments>
<arguments>
<argument>build</argument>
<argument>${native.configuration}</argument>
</arguments>
</configuration>
</execution>
</executions>
Expand Down

0 comments on commit 62c147a

Please sign in to comment.