Skip to content

Commit

Permalink
Merge branch 'svasek:master' into master
Browse files Browse the repository at this point in the history
  • Loading branch information
svasek committed Dec 22, 2021
2 parents 7566c7c + 8db4ff1 commit 0e07195
Show file tree
Hide file tree
Showing 6 changed files with 37 additions and 25 deletions.
4 changes: 4 additions & 0 deletions .github/dependabot.yml
Original file line number Diff line number Diff line change
Expand Up @@ -4,3 +4,7 @@ updates:
directory: "/"
schedule:
interval: "weekly"
- package-ecosystem: github-actions
directory: /
schedule:
interval: daily
2 changes: 2 additions & 0 deletions .github/release-drafter.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,2 @@
_extends: .github
tag-template: antexec-$NEXT_MINOR_VERSION
1 change: 0 additions & 1 deletion .gitignore
Original file line number Diff line number Diff line change
@@ -1,6 +1,5 @@
.settings/
.idea/
.mvn/
target/
work/
lib/
Expand Down
7 changes: 7 additions & 0 deletions .mvn/extensions.xml
Original file line number Diff line number Diff line change
@@ -0,0 +1,7 @@
<extensions xmlns="http://maven.apache.org/EXTENSIONS/1.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:schemaLocation="http://maven.apache.org/EXTENSIONS/1.0.0 http://maven.apache.org/xsd/core-extensions-1.0.0.xsd">
<extension>
<groupId>io.jenkins.tools.incrementals</groupId>
<artifactId>git-changelist-maven-extension</artifactId>
<version>1.2</version>
</extension>
</extensions>
2 changes: 2 additions & 0 deletions .mvn/maven.config
Original file line number Diff line number Diff line change
@@ -0,0 +1,2 @@
-Pconsume-incrementals
-Pmight-produce-incrementals
46 changes: 22 additions & 24 deletions pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
<modelVersion>4.0.0</modelVersion>
<properties>
<revision>1.12</revision>
<changelist>SNAPSHOT</changelist>
<changelist>-SNAPSHOT</changelist>
<gitHubRepo>jenkinsci/antexec-plugin</gitHubRepo>
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
<jenkins.version>2.289.1</jenkins.version>
Expand All @@ -18,7 +18,7 @@
</parent>

<artifactId>antexec</artifactId>
<version>${revision}-${changelist}</version>
<version>1.12</version>
<packaging>hpi</packaging>
<name>AntExec</name>
<description>Adds new build step for running directly written Apache Ant code</description>
Expand All @@ -30,10 +30,6 @@
<name>Milos Svasek</name>
<email>Milos@Svasek.net</email>
<timezone>+1</timezone>
<roles>
<role>Project Owner</role>
<role>Project Lead Developer</role>
</roles>
</developer>
</developers>

Expand All @@ -50,39 +46,33 @@
<connection>scm:git:https://github.com/${gitHubRepo}.git</connection>
<developerConnection>scm:git:https://github.com/${gitHubRepo}.git</developerConnection>
<url>https://github.com/${gitHubRepo}</url>
<tag>${scmTag}</tag>
<tag>antexec-1.12</tag>
</scm>

<dependencyManagement>
<dependencies>
<dependency>
<groupId>io.jenkins.tools.bom</groupId>
<artifactId>bom-2.289.x</artifactId>
<version>1055.v9637a690f734</version>
<scope>import</scope>
<type>pom</type>
</dependency>
</dependencies>
</dependencyManagement>
<dependencies>
<dependency>
<groupId>io.jenkins.tools.bom</groupId>
<artifactId>bom-2.289.x</artifactId>
<version>1055.v9637a690f734</version>
<scope>compile</scope>
<type>pom</type>
</dependency>
<dependency>
<groupId>org.jenkins-ci</groupId>
<artifactId>symbol-annotation</artifactId>
<version>1.23</version>
<scope>compile</scope>
</dependency>
<dependency>
<groupId>org.jenkins-ci.tools</groupId>
<artifactId>maven-hpi-plugin</artifactId>
<version>3.22</version>
<scope>compile</scope>
</dependency>

<dependency>
<groupId>org.jenkins-ci.plugins</groupId>
<artifactId>ant</artifactId>
<version>1.13</version>
</dependency>
<dependency>
<groupId>org.jenkins-ci.plugins</groupId>
<artifactId>token-macro</artifactId>
<version>267.vcdaea6462991</version>
</dependency>
</dependencies>

Expand Down Expand Up @@ -134,6 +124,14 @@
<goals>deploy</goals>
</configuration>
</plugin>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-surefire-plugin</artifactId>
<configuration>
<skipTests>true</skipTests>
<testFailureIgnore>true</testFailureIgnore>
</configuration>
</plugin>
</plugins>
</build>

Expand Down

0 comments on commit 0e07195

Please sign in to comment.