Skip to content
GitLab
Explore
Sign in
Register
Primary navigation
Search or go to…
Project
VTK
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Snippets
Build
Pipelines
Jobs
Pipeline schedules
Artifacts
Deploy
Releases
Package registry
Model registry
Operate
Environments
Terraform modules
Monitor
Incidents
Service Desk
Analyze
Value stream analytics
Contributor analytics
CI/CD analytics
Repository analytics
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
Xiaowei Li
VTK
Commits
dab22219
Commit
dab22219
authored
3 months ago
by
Vicente Bolea
Browse files
Options
Downloads
Patches
Plain Diff
java: correct release maven repo
parent
f6fa0851
Loading
Loading
No related merge requests found
Changes
3
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
.gitlab/os-linux.yml
+1
-1
1 addition, 1 deletion
.gitlab/os-linux.yml
Wrapping/Java/Maven/README.txt.in
+3
-3
3 additions, 3 deletions
Wrapping/Java/Maven/README.txt.in
Wrapping/Java/Maven/pom.xml.in
+6
-7
6 additions, 7 deletions
Wrapping/Java/Maven/pom.xml.in
with
10 additions
and
11 deletions
.gitlab/os-linux.yml
+
1
−
1
View file @
dab22219
...
...
@@ -831,4 +831,4 @@
-s '/_:settings/servers/server' -t elem -n password -v '${env.MAVEN_PASSWORD}'
"$HOME/.m2/settings.xml"
-
cd build/install
-
mvn deploy -Dvtk.
snapshots
.repo=https://maven.pkg.github.com/kitware/vtk -Dvtk.
snapshots
.repo.id=github
-
mvn deploy -Dvtk.
maven
.repo=https://maven.pkg.github.com/kitware/vtk -Dvtk.
maven
.repo.id=github
This diff is collapsed.
Click to expand it.
Wrapping/Java/Maven/README.txt.in
+
3
−
3
View file @
dab22219
...
...
@@ -59,12 +59,12 @@ will only include the native artifacts for that platform. Running the command:
$ mvn deploy
The deployment url is defined by the property `vtk.
snapshots
.repo`. By default
this is set to `file://${user.home}/vtk-maven-repos
/snapshots
`. To deploy
The deployment url is defined by the property `vtk.
maven
.repo`. By default
this is set to `file://${user.home}/vtk-maven-repos`. To deploy
to an internal artifact server (e.g. Nexus, Artifactory, etc.), you can set
this property on the command line to the deployment URL, e.g.:
$ mvn deploy -Dvtk.
snapshots
.repo=http://maven.yoyodyne.com/repos/snapshots
$ mvn deploy -Dvtk.
maven
.repo=http://maven.yoyodyne.com/repos/snapshots
# ----------------------------------------------------------------------------
...
...
This diff is collapsed.
Click to expand it.
Wrapping/Java/Maven/pom.xml.in
+
6
−
7
View file @
dab22219
...
...
@@ -2,9 +2,8 @@
<project
xmlns=
"http://maven.apache.org/POM/4.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/maven-4.0.0.xsd"
>
<modelVersion>
4.0.0
</modelVersion>
<properties>
<vtk.snapshots.repo.id>
vtk-snapshots-repo
</vtk.snapshots.repo.id>
<vtk.snapshots.repo>
file://@MAVEN_LOCAL_REPOSITORY@/snapshots
</vtk.snapshots.repo>
<vtk.releases.repo>
file://@MAVEN_LOCAL_REPOSITORY@/releases
</vtk.releases.repo>
<vtk.maven.repo.id>
vtk-maven-repo
</vtk.maven.repo.id>
<vtk.maven.repo>
file://@MAVEN_LOCAL_REPOSITORY@
</vtk.maven.repo>
</properties>
<groupId>
@MAVEN_VTK_GROUP_ID@
</groupId>
<artifactId>
vtk@MAVEN_VTK_ARTIFACT_SUFFIX@
</artifactId>
...
...
@@ -80,14 +79,14 @@
will ease the merge of those directory for a one step maven deploy.
-->
<repository>
<id>
vtk-
releases
-repo
</id>
<id>
vtk-
maven
-repo
</id>
<name>
VTK Release Artifact Repository
</name>
<url>
${vtk.
releases
.repo}
</url>
<url>
${vtk.
maven
.repo}
</url>
</repository>
<snapshotRepository>
<id>
${vtk.
snapshots
.repo.id}
</id>
<id>
${vtk.
maven
.repo.id}
</id>
<name>
VTK Snapshot Artifact Repository
</name>
<url>
${vtk.
snapshots
.repo}
</url>
<url>
${vtk.
maven
.repo}
</url>
</snapshotRepository>
</distributionManagement>
<pluginRepositories>
...
...
This diff is collapsed.
Click to expand it.
Preview
0%
Loading
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Save comment
Cancel
Please
register
or
sign in
to comment