Skip to content

Commit

Permalink
some small updates related to releasing 0.4.6
Browse files Browse the repository at this point in the history
  • Loading branch information
pahjbo committed Dec 14, 2023
1 parent 1babf7f commit 046574e
Show file tree
Hide file tree
Showing 4 changed files with 22 additions and 20 deletions.
8 changes: 4 additions & 4 deletions Developing.md
Original file line number Diff line number Diff line change
Expand Up @@ -22,17 +22,17 @@ The plug-in can then be installed in the usual fashion for eclipse by adding the
Deploying stand alone parser to maven central
---------------------------------------------

after the maven build in the top level, then in the `vodsl.standalone` directory
after the maven build in the top level, then

mvn deploy -P release
mvn -X deploy -P release --projects mavenbase,net.ivoa.vodsl,vodsl.standalone


if this is successful then


mvn nexus-staging:release -P release

mvn nexus-staging:release -P release --projects mavenbase,net.ivoa.vodsl,vodsl.standalone

or go to https://oss.sonatype.org/ to release manually

There are tutorials and reference documents to guide development on the
[Xtext site](https://eclipse.org/Xtext/documentation/102_domainmodelwalkthrough.html)
Expand Down
20 changes: 8 additions & 12 deletions eclipse.target/eclipse.vodsl.target.target
Original file line number Diff line number Diff line change
Expand Up @@ -67,18 +67,6 @@
<unit id="com.google.inject" version="3.0.0.v201605172100"/>
<unit id="io.github.classgraph" version="4.8.35.v20190528-1517"/>
</location>
<location includeAllPlatforms="false" includeConfigurePhase="false" includeMode="planner" includeSource="true" type="InstallableUnit">
<repository location="https://download.eclipse.org/tools/gef/updates/legacy/releases"/>
<unit id="org.eclipse.draw2d.feature.group" version="3.10.100.201606061308"/>
</location>
<location includeAllPlatforms="false" includeConfigurePhase="false" includeMode="planner" includeSource="true" type="InstallableUnit">
<repository location="http://downloads.efxclipse.bestsolution.at/p2-repos/openjfx-11/repository/"/>
<unit id="openjfx.media.feature.feature.group" version="11.0.0.201901231300"/>
<unit id="openjfx.standard.feature.feature.group" version="11.0.0.201901231300"/>
<unit id="openjfx.swing.feature.feature.group" version="11.0.0.201901231300"/>
<unit id="openjfx.swt.feature.feature.group" version="11.0.0.201901231300"/>
<unit id="openjfx.web.feature.feature.group" version="11.0.0.201901231300"/>
</location>
<location includeAllPlatforms="false" includeConfigurePhase="false" includeMode="planner" includeSource="true" type="InstallableUnit">
<repository location="http://rtsys.informatik.uni-kiel.de/~kieler/updatesite/release_pragmatics_2015-02"/>
<unit id="de.cau.cs.kieler.kgraph.feature.feature.group" version="0.7.0.201502261452"/>
Expand All @@ -90,6 +78,14 @@
<unit id="de.cau.cs.kieler.klighd.feature.feature.group" version="0.8.0.201502261452"/>
<unit id="org.adaptagrams.feature.feature.group" version="0.1.0.201502261452"/>
</location>
<location includeAllPlatforms="false" includeConfigurePhase="false" includeMode="planner" includeSource="true" type="InstallableUnit">
<repository location="https://vo.jb.man.ac.uk/eclipse/javafx/"/>
<unit id="openjfx.media.feature.feature.group" version="17.0.0.202311161141"/>
<unit id="openjfx.standard.feature.feature.group" version="17.0.0.202311161141"/>
<unit id="openjfx.swing.feature.feature.group" version="17.0.0.202311161141"/>
<unit id="openjfx.swt.feature.feature.group" version="17.0.0.202311161141"/>
<unit id="openjfx.web.feature.feature.group" version="17.0.0.202311161141"/>
</location>
</locations>
<targetJRE path="org.eclipse.jdt.launching.JRE_CONTAINER/org.eclipse.jdt.internal.debug.ui.launcher.StandardVMType/JavaSE-11"/>
</target>
9 changes: 7 additions & 2 deletions mavenbase/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -439,7 +439,7 @@
<plugin>
<groupId>org.sonatype.plugins</groupId>
<artifactId>nexus-staging-maven-plugin</artifactId>
<version>1.6.8</version>
<version>1.6.13</version>
<extensions>true</extensions>
<configuration>
<serverId>ossrh</serverId>
Expand All @@ -450,7 +450,12 @@
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-release-plugin</artifactId>
<version>2.5.3</version>
<version>3.0.1</version>
</plugin>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-deploy-plugin</artifactId>
<version>3.1.1</version>
</plugin>

<!-- not yet
Expand Down
5 changes: 3 additions & 2 deletions pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -9,16 +9,17 @@

<modules>
<module>net.ivoa.vodsl</module>
<module>vodsl.standalone</module>
<module>net.ivoa.vodsl.ui</module>
<module>net.ivoa.vodsl.ide</module>
<module>eclipse.target</module>
<module>net.ivoa.vodsl.sdk</module>
<module>mavenbase</module><!-- just to get the pom installed -->
<!-- <module>eclipse.repository</module> -->
<!-- <module>net.ivoa.vodsl.tests</module> -->
<!-- <module>net.ivoa.vodsl.ui.tests</module> -->

<module>vodsl.standalone</module>
<module>mavenbase</module>

</modules>

</project>

0 comments on commit 046574e

Please sign in to comment.