Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion Jenkinsfile
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ pipeline {

tools {
maven 'apache-maven-3.8.6'
jdk 'openjdk-jdk11-latest'
jdk 'openjdk-jdk17-latest'
}

options {
Expand Down
51 changes: 34 additions & 17 deletions pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -59,16 +59,16 @@
<package.type.test>eclipse-test-plugin</package.type.test>

<!-- Build Plugin Versions -->
<tycho.version>2.7.5</tycho.version>
<tycho.version>3.0.5</tycho.version>
<maven.compiler.version>3.10.1</maven.compiler.version>
<maven.clean.version>3.2.0</maven.clean.version>
<maven.checkstyle.version>3.2.1</maven.checkstyle.version>
<checkstyle.version>8.44</checkstyle.version>
<emfcloud.checkstyle.version>0.1.0-SNAPSHOT</emfcloud.checkstyle.version>

<maven.resources.version>3.2.0</maven.resources.version>
<maven.surefire.version>3.0.0-M6</maven.surefire.version>
<maven.failsafe.version>3.0.0-M6</maven.failsafe.version>
<maven.surefire.version>3.5.3</maven.surefire.version>
<maven.failsafe.version>3.5.3</maven.failsafe.version>
<maven.source.plugin>3.2.1</maven.source.plugin>
<maven.dependency.version>3.3.0</maven.dependency.version>
<maven.shade.version>3.3.0</maven.shade.version>
Expand All @@ -85,14 +85,14 @@
platform in p2. We try to match the p2-version if possible. -->
<eclipse.core.resources.version>3.7.100</eclipse.core.resources.version>
<eclipse.core.runtime.version>3.7.0</eclipse.core.runtime.version>
<emf.ecore.version>2.26.0</emf.ecore.version>
<emf.common.version>2.23.0</emf.common.version>
<emf.ecore.change.version>2.14.0</emf.ecore.change.version>
<emf.ecore.xmi.version>2.16.0</emf.ecore.xmi.version>
<emf.edit.version>2.16.0</emf.edit.version>
<emf.ecore.version>2.33.0</emf.ecore.version>
<emf.common.version>2.28.0</emf.common.version>
<emf.ecore.change.version>2.15.0</emf.ecore.change.version>
<emf.ecore.xmi.version>2.18.0</emf.ecore.xmi.version>
<emf.edit.version>2.18.0</emf.edit.version>
<emf.transaction.version>1.8.0.201405281451</emf.transaction.version>
<emf.validation.version>1.8.0.201405281429</emf.validation.version>
<emfjson.jackson.version>2.0.0</emfjson.jackson.version>
<emfjson.jackson.version>2.3.0-SNAPSHOT</emfjson.jackson.version>
<fasterxml.jackson.version>2.12.6.1</fasterxml.jackson.version>
<google.guice.version>5.0.1</google.guice.version>
<google.guice.multibindings.version>4.2.3</google.guice.multibindings.version>
Expand Down Expand Up @@ -131,6 +131,17 @@
<name>Sonatype</name>
<url>https://oss.sonatype.org/content/groups/public</url>
</pluginRepository>
<pluginRepository>
<name>Central Portal Snapshots</name>
<id>central-portal-snapshots</id>
<url>https://central.sonatype.com/repository/maven-snapshots/</url>
<releases>
<enabled>false</enabled>
</releases>
<snapshots>
<enabled>true</enabled>
</snapshots>
</pluginRepository>
</pluginRepositories>

<profiles>
Expand Down Expand Up @@ -318,6 +329,13 @@
<name>WSO2</name>
<url>https://maven.wso2.org/nexus/content/groups/wso2-public</url>
</repository>
<repository>
<id>central</id>
<url>https://repo1.maven.org/maven2</url>
<releases>
<enabled>true</enabled>
</releases>
</repository>
</repositories>

<modules>
Expand Down Expand Up @@ -388,23 +406,22 @@

<distributionManagement>
<snapshotRepository>
<id>ossrh</id>
<url>https://oss.sonatype.org/content/repositories/snapshots</url>
<id>central</id>
<url>https://central.sonatype.com/repository/maven-snapshots/</url>
</snapshotRepository>
</distributionManagement>

<build>
<plugins>
<!-- To release to Sonatype/Maven central -->
<plugin>
<groupId>org.sonatype.plugins</groupId>
<artifactId>nexus-staging-maven-plugin</artifactId>
<version>${nexus.maven.version}</version>
<groupId>org.sonatype.central</groupId>
<artifactId>central-publishing-maven-plugin</artifactId>
<version>0.8.0</version>
<extensions>true</extensions>
<configuration>
<serverId>ossrh</serverId>
<nexusUrl>https://oss.sonatype.org/</nexusUrl>
<autoreleaseafterclose>false</autoreleaseafterclose>
<publishingServerId>central</publishingServerId>
<autoPublish>true</autoPublish>
</configuration>
</plugin>

Expand Down
11 changes: 5 additions & 6 deletions project-templates/modelserver-glspjava-emf-theia/server/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -31,12 +31,11 @@
<codehaus.mojo.maven.version>3.3.0</codehaus.mojo.maven.version>
<maven.antrun.version>3.1.0</maven.antrun.version>
<!-- Dependencies -->
<emf.ecore.version>2.26.0</emf.ecore.version>
<emf.common.version>2.23.0</emf.common.version>
<emf.ecore.change.version>2.14.0</emf.ecore.change.version>
<emf.ecore.edit.version>2.15.0</emf.ecore.edit.version>
<emf.ecore.xmi.version>2.16.0</emf.ecore.xmi.version>
<emf.edit.version>2.16.0</emf.edit.version>
<emf.ecore.version>2.33.0</emf.ecore.version>
<emf.common.version>2.28.0</emf.common.version>
<emf.ecore.change.version>2.15.0</emf.ecore.change.version>
<emf.ecore.xmi.version>2.18.0</emf.ecore.xmi.version>
<emf.edit.version>2.18.0</emf.edit.version>
<emfjson.jackson.version>2.0.0</emfjson.jackson.version>
<eclipse.core.resources.version>3.7.100</eclipse.core.resources.version>
<eclipse.core.runtime.version>3.7.0</eclipse.core.runtime.version>
Expand Down
Loading