Compare commits

...

1 Commits

Author SHA1 Message Date
Irene Wang
34a2d1725e Test Java 11 2021-06-15 17:28:11 +02:00

View File

@@ -62,7 +62,7 @@
</distributionManagement> </distributionManagement>
<repositories> <repositories>
<repository> <repository>
<id>tos-deps</id> <id>tos-deps</id>
<url>${tos-deps-p2-repo.url}</url> <url>${tos-deps-p2-repo.url}</url>
@@ -118,7 +118,7 @@
</snapshots> </snapshots>
<url>${opensourcesnapshot-repo.url}</url> <url>${opensourcesnapshot-repo.url}</url>
</repository> </repository>
</repositories> </repositories>
<build> <build>
<pluginManagement> <pluginManagement>
@@ -147,12 +147,12 @@
<artifactId>tycho-maven-plugin</artifactId> <artifactId>tycho-maven-plugin</artifactId>
<version>${tycho.version}</version> <version>${tycho.version}</version>
<extensions>true</extensions> <extensions>true</extensions>
</plugin> </plugin>
<plugin> <plugin>
<groupId>org.eclipse.tycho</groupId> <groupId>org.eclipse.tycho</groupId>
<artifactId>tycho-versions-plugin</artifactId> <artifactId>tycho-versions-plugin</artifactId>
<version>${tycho.version}</version> <version>${tycho.version}</version>
</plugin> </plugin>
<plugin> <plugin>
<groupId>org.eclipse.tycho</groupId> <groupId>org.eclipse.tycho</groupId>
<artifactId>target-platform-configuration</artifactId> <artifactId>target-platform-configuration</artifactId>
@@ -183,7 +183,7 @@
</restrictTo> </restrictTo>
</filter> </filter>
<!-- example 2: remove all providers of the package javax.persistence except the bundle javax.persistence <!-- example 2: remove all providers of the package javax.persistence except the bundle javax.persistence
<filter> <filter>
<type>java-package</type> <type>java-package</type>
<id>javax.persistence</id> <id>javax.persistence</id>
@@ -193,13 +193,13 @@
</restrictTo> </restrictTo>
</filter> </filter>
--> -->
<!-- example 3: work around Equinox bug 348045 <!-- example 3: work around Equinox bug 348045
<filter> <filter>
<type>p2-installable-unit</type> <type>p2-installable-unit</type>
<id>org.eclipse.equinox.servletbridge.extensionbundle</id> <id>org.eclipse.equinox.servletbridge.extensionbundle</id>
<removeAll /> <removeAll />
</filter> </filter>
--> -->
</filters> </filters>
</configuration> </configuration>
</plugin> </plugin>
@@ -212,9 +212,9 @@
<arg>-err:+discouraged,forbidden</arg> <arg>-err:+discouraged,forbidden</arg>
<arg>-warn:+discouraged,forbidden</arg> <arg>-warn:+discouraged,forbidden</arg>
</compilerArgs> </compilerArgs>
<compilerVersion>1.8</compilerVersion> <compilerVersion>11</compilerVersion>
<source>1.8</source> <source>11</source>
<target>1.8</target> <target>11</target>
</configuration> </configuration>
</plugin> </plugin>
</plugins> </plugins>
@@ -453,7 +453,7 @@
</files> </files>
</configuration> </configuration>
</execution> </execution>
</executions> </executions>
</plugin> </plugin>
<plugin> <plugin>
<groupId>org.eclipse.tycho</groupId> <groupId>org.eclipse.tycho</groupId>
@@ -506,7 +506,7 @@
<sequential> <sequential>
<echo>Signing @{jarFile}</echo> <echo>Signing @{jarFile}</echo>
<exec executable="${java.home}/../bin/jarsigner" dir="${project.basedir}/target/" failonerror="true"> <exec executable="${java.home}/../bin/jarsigner" dir="${project.basedir}/target/" failonerror="true">
<arg line="-verbose -digestalg SHA1 -sigalg SHA1withRSA -keystore ${keystore.path} -storepass ${keystore.pass} @{jarFile} talend" /> <arg line="-verbose -digestalg SHA1 -sigalg SHA1withRSA -keystore ${keystore.path} -storepass ${keystore.pass} @{jarFile} talend" />
</exec> </exec>
</sequential> </sequential>
</ac:for> </ac:for>