Skip to content

Commit

Permalink
update config
Browse files Browse the repository at this point in the history
  • Loading branch information
JorisAerts committed Sep 20, 2022
1 parent 2dfd93f commit aad8465
Show file tree
Hide file tree
Showing 6 changed files with 30 additions and 10 deletions.
10 changes: 5 additions & 5 deletions .project
Expand Up @@ -6,27 +6,27 @@
</projects>
<buildSpec>
<buildCommand>
<name>org.eclipse.jdt.core.javabuilder</name>
<name>org.eclipse.m2e.core.maven2Builder</name>
<arguments>
</arguments>
</buildCommand>
<buildCommand>
<name>org.eclipse.pde.ManifestBuilder</name>
<name>org.eclipse.jdt.core.javabuilder</name>
<arguments>
</arguments>
</buildCommand>
<buildCommand>
<name>org.eclipse.pde.SchemaBuilder</name>
<name>org.eclipse.pde.ManifestBuilder</name>
<arguments>
</arguments>
</buildCommand>
<buildCommand>
<name>org.eclipse.pde.api.tools.apiAnalysisBuilder</name>
<name>org.eclipse.pde.SchemaBuilder</name>
<arguments>
</arguments>
</buildCommand>
<buildCommand>
<name>org.eclipse.m2e.core.maven2Builder</name>
<name>org.eclipse.pde.api.tools.apiAnalysisBuilder</name>
<arguments>
</arguments>
</buildCommand>
Expand Down
2 changes: 1 addition & 1 deletion META-INF/MANIFEST.MF
Expand Up @@ -2,7 +2,7 @@ Manifest-Version: 1.0
Bundle-ManifestVersion: 2
Bundle-Name: Eclipse Environment Variables
Bundle-SymbolicName: Eclipse-Environment-Variables;singleton:=true
Bundle-Version: 1.0.0.qualifier
Bundle-Version: 1.0.1.qualifier
Import-Package: com.sun.jna;version="5.8.0"
Bundle-Vendor: Joris Aerts
Bundle-RequiredExecutionEnvironment: JavaSE-11
Expand Down
1 change: 1 addition & 0 deletions build.properties
Expand Up @@ -4,3 +4,4 @@ bin.includes = plugin.xml,\
META-INF/,\
.
jars.compile.order = .
src.includes = src/
23 changes: 21 additions & 2 deletions pom.xml
Expand Up @@ -15,16 +15,35 @@
</resource>
</resources>
<plugins>
<plugin>
<groupId>org.eclipse.cbi.maven.plugins</groupId>
<artifactId>eclipse-jarsigner-plugin</artifactId>
<version>1.1.5</version>
<executions>
<execution>
<id>sign</id>
<phase>verify</phase>
<goals>
<goal>sign</goal>
</goals>
</execution>
</executions>
</plugin>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-compiler-plugin</artifactId>
<version>3.8.0</version>
<configuration>
<source>1.8</source>
<target>1.8</target>
<source>11</source>
<target>11</target>
<!-- <verbose>true</verbose> -->
</configuration>
</plugin>
<plugin>
<groupId>org.eclipse.cbi.maven.plugins</groupId>
<artifactId>eclipse-jarsigner-plugin</artifactId>
<version>1.1.5</version>
</plugin>
</plugins>
</build>
<url>https://github.com/JorisAerts/Eclipse-Environment-Variables</url>
Expand Down
2 changes: 1 addition & 1 deletion settings.xml
@@ -1,4 +1,4 @@
<settings xmlns="http://maven.apache.org/POM/4.0.0"
<settings xmlns="http://maven.apache.org/SETTINGS/1.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/xsd/settings-1.0.0.xsd">
<profiles>
Expand Down
2 changes: 1 addition & 1 deletion system.properties
@@ -1 +1 @@
java.runtime.version=1.8
java.runtime.version=11

0 comments on commit aad8465

Please sign in to comment.