File tree Expand file tree Collapse file tree 2 files changed +4
-14
lines changed Expand file tree Collapse file tree 2 files changed +4
-14
lines changed Original file line number Diff line number Diff line change @@ -98,18 +98,19 @@ jobs:
98
98
run : |
99
99
export MAVEN_OPTS="-Xmx4096m"
100
100
export JAVA_TOOL_OPTIONS="-Dfile.encoding=UTF8"
101
+ release_version=${{ github.event.inputs.release_version }}
102
+
101
103
# Required for reactor dependencies
102
104
mvn clean install -DskipTests -Dmaven.javadoc.skip=true
103
- mvn versions:set -DnewVersion=${{ github.event.inputs. release_version } }
105
+ mvn versions:set -DnewVersion=${release_version}
104
106
mvn versions:commit
105
107
106
- release_version=${{ github.event.inputs.release_version }}
107
-
108
108
# Actual build of core SDK
109
109
mvn -B -pl '!org.eclipse.esmf:samm-cli' clean deploy -Pnative -Dmaven.wagon.httpconnectionManager.ttlSeconds=60 -Psign
110
110
111
111
# Create Maven Central upload bundle
112
112
pushd target/central-deferred
113
+ rm -rf org/eclipse/esmf/documentation
113
114
zip -r -9 ../../central-bundle.zip .
114
115
popd
115
116
Original file line number Diff line number Diff line change 100
100
</configuration >
101
101
</plugin >
102
102
103
- <plugin >
104
- <groupId >org.apache.maven.plugins</groupId >
105
- <artifactId >maven-jar-plugin</artifactId >
106
- <executions >
107
- <execution >
108
- <id >default-jar</id >
109
- <phase />
110
- </execution >
111
- </executions >
112
- </plugin >
113
-
114
103
<plugin >
115
104
<groupId >org.apache.maven.plugins</groupId >
116
105
<artifactId >maven-source-plugin</artifactId >
You can’t perform that action at this time.
0 commit comments