Skip to content

Commit

Permalink
Merge branch 'main' into use-bom
Browse files Browse the repository at this point in the history
  • Loading branch information
MarkEWaite committed Mar 14, 2022
2 parents 0ca4c69 + 58f8ae7 commit 4e8bc8e
Show file tree
Hide file tree
Showing 32 changed files with 998 additions and 75 deletions.
45 changes: 45 additions & 0 deletions .classpath
Original file line number Diff line number Diff line change
@@ -0,0 +1,45 @@
<?xml version="1.0" encoding="UTF-8"?>
<classpath>
<classpathentry kind="src" output="target/classes" path="src/main/java">
<attributes>
<attribute name="optional" value="true"/>
<attribute name="maven.pomderived" value="true"/>
</attributes>
</classpathentry>
<classpathentry kind="src" output="target/classes" path="target/generated-sources/localizer">
<attributes>
<attribute name="optional" value="true"/>
<attribute name="maven.pomderived" value="true"/>
</attributes>
</classpathentry>
<classpathentry excluding="**" kind="src" output="target/classes" path="src/main/resources">
<attributes>
<attribute name="maven.pomderived" value="true"/>
</attributes>
</classpathentry>
<classpathentry kind="src" output="target/test-classes" path="src/test/java">
<attributes>
<attribute name="optional" value="true"/>
<attribute name="maven.pomderived" value="true"/>
<attribute name="test" value="true"/>
</attributes>
</classpathentry>
<classpathentry kind="src" output="target/test-classes" path="target/generated-test-sources/injected">
<attributes>
<attribute name="optional" value="true"/>
<attribute name="maven.pomderived" value="true"/>
<attribute name="test" value="true"/>
</attributes>
</classpathentry>
<classpathentry kind="con" path="org.eclipse.jdt.launching.JRE_CONTAINER/org.eclipse.jdt.internal.debug.ui.launcher.StandardVMType/JavaSE-1.8">
<attributes>
<attribute name="maven.pomderived" value="true"/>
</attributes>
</classpathentry>
<classpathentry kind="con" path="org.eclipse.m2e.MAVEN2_CLASSPATH_CONTAINER">
<attributes>
<attribute name="maven.pomderived" value="true"/>
</attributes>
</classpathentry>
<classpathentry kind="output" path="target/classes"/>
</classpath>
23 changes: 23 additions & 0 deletions .project
Original file line number Diff line number Diff line change
@@ -0,0 +1,23 @@
<?xml version="1.0" encoding="UTF-8"?>
<projectDescription>
<name>autonomiq-plugin</name>
<comment></comment>
<projects>
</projects>
<buildSpec>
<buildCommand>
<name>org.eclipse.jdt.core.javabuilder</name>
<arguments>
</arguments>
</buildCommand>
<buildCommand>
<name>org.eclipse.m2e.core.maven2Builder</name>
<arguments>
</arguments>
</buildCommand>
</buildSpec>
<natures>
<nature>org.eclipse.jdt.core.javanature</nature>
<nature>org.eclipse.m2e.core.maven2Nature</nature>
</natures>
</projectDescription>
7 changes: 7 additions & 0 deletions .settings/org.eclipse.core.resources.prefs
Original file line number Diff line number Diff line change
@@ -0,0 +1,7 @@
eclipse.preferences.version=1
encoding//src/main/java=UTF-8
encoding//src/main/resources=UTF-8
encoding//src/test/java=UTF-8
encoding//target/generated-sources/localizer=UTF-8
encoding//target/generated-test-sources/injected=UTF-8
encoding/<project>=UTF-8
9 changes: 9 additions & 0 deletions .settings/org.eclipse.jdt.core.prefs
Original file line number Diff line number Diff line change
@@ -0,0 +1,9 @@
eclipse.preferences.version=1
org.eclipse.jdt.core.compiler.codegen.methodParameters=generate
org.eclipse.jdt.core.compiler.codegen.targetPlatform=1.8
org.eclipse.jdt.core.compiler.compliance=1.8
org.eclipse.jdt.core.compiler.problem.enablePreviewFeatures=disabled
org.eclipse.jdt.core.compiler.problem.forbiddenReference=warning
org.eclipse.jdt.core.compiler.problem.reportPreviewFeatures=ignore
org.eclipse.jdt.core.compiler.release=enabled
org.eclipse.jdt.core.compiler.source=1.8
17 changes: 11 additions & 6 deletions pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -4,12 +4,12 @@
<parent>
<groupId>org.jenkins-ci.plugins</groupId>
<artifactId>plugin</artifactId>
<version>4.16</version>
<version>4.29</version>
<relativePath />
</parent>
<groupId>io.jenkins.plugins</groupId>
<artifactId>autonomiq</artifactId>
<version>1.12-SNAPSHOT</version>
<version>1.17-SNAPSHOT</version>
<packaging>hpi</packaging>
<name>autonomiq plugin</name>
<url>https://github.com/jenkinsci/autonomiq-plugin</url>
Expand Down Expand Up @@ -98,13 +98,18 @@
<name>Mohammed Jameel Uddin</name>
<email>[email protected]</email>
</developer>
<developer>
<id>Syambasiva</id>
<name>SyambasivaAutonomiq</name>
<email>[email protected]</email>
</developer>
</developers>

<scm>
<connection>scm:git:git://github.com/jenkinsci/Autonomiq-plugin.git</connection>
<developerConnection>scm:git:[email protected]:jenkinsci/Autonomiq-plugin.git</developerConnection>
<url>https://github.com/jenkinsci/Autonomiq-plugin</url>
<tag>HEAD</tag>
<connection>scm:git:https://github.com/jenkinsci/autonomiq-plugin.git</connection>
<developerConnection>scm:git:[email protected]:jenkinsci/autonomiq-plugin.git</developerConnection>
<url>https://github.com/jenkinsci/autonomiq-plugin</url>
<tag>autonomiq-1.14</tag>
</scm>

<repositories>
Expand Down
Loading

0 comments on commit 4e8bc8e

Please sign in to comment.