Skip to content
GitLab
Explore
Sign in
Register
Primary navigation
Search or go to…
Project
S
Storage
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Iterations
Requirements
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Snippets
Locked files
Build
Pipelines
Jobs
Pipeline schedules
Test cases
Artifacts
Deploy
Releases
Package registry
Container Registry
Model registry
Operate
Environments
Terraform modules
Monitor
Incidents
Service Desk
Analyze
Value stream analytics
Contributor analytics
CI/CD analytics
Repository analytics
Code review analytics
Issue analytics
Insights
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Terms and privacy
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
OSDU
OSDU Data Platform
System
Storage
Commits
70b3e26f
Commit
70b3e26f
authored
4 years ago
by
Aliaksandr Ramanovich (EPAM)
Browse files
Options
Downloads
Patches
Plain Diff
GONRG-534 fix pom files
parent
0a04c282
No related branches found
Branches containing commit
No related tags found
Tags containing commit
2 merge requests
!66
Various namespaces in datastore (GONRG-837)
,
!49
Unify logic for credentials (GONRG-539)
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
.mvn/community-maven.settings.xml
+77
-59
77 additions, 59 deletions
.mvn/community-maven.settings.xml
pom.xml
+6
-6
6 additions, 6 deletions
pom.xml
with
83 additions
and
65 deletions
.mvn/community-maven.settings.xml
+
77
−
59
View file @
70b3e26f
<settings>
<profiles>
<profile>
<!-- This profile uses the CI-Token to authenticate with the server, and is the default case -->
<id>
GitLab-Authenticate-With-Job-Token
</id>
<activation>
<activeByDefault>
true
</activeByDefault>
</activation>
<properties>
<
gitlab-server
>
community-maven-
via-job-token
</gitlab-server
>
</properties
>
</profile
>
<profiles>
<profile>
<!-- This profile uses the CI-Token to authenticate with the server, and is the default case -->
<id>
GitLab-Authenticate-With-Job-Token
</id>
<activation>
<activeByDefault>
true
</activeByDefault>
</activation>
<properties>
<
repo.releases.id
>
community-maven-
repo
</repo.releases.id
>
<publish.snapshots.id>
community-maven-via-job-token
</publish.snapshots.id
>
<publish.releases.id>
community-maven-via-job-token
</publish.releases.id
>
<profile>
<!-- This profile uses a personal token to authenticate, which is useful for local or manual runs. The
presence of the COMMUNITY_MAVEN_TOKEN variable triggers this and overrides the CI Token
based authentication -->
<id>
GitLab-Authenticate-With-Private-Token
</id>
<activation>
<property>
<name>
env.COMMUNITY_MAVEN_TOKEN
</name>
</property>
</activation>
<properties>
<gitlab-server>
community-maven-via-private-token
</gitlab-server>
</properties>
</profile>
</profiles>
<repo.releases.url>
https://community.opengroup.org/api/v4/groups/17/-/packages/maven
</repo.releases.url>
<publish.snapshots.url>
https://community.opengroup.org/api/v4/projects/44/packages/maven
</publish.snapshots.url>
<publish.releases.url>
https://community.opengroup.org/api/v4/projects/44/packages/maven
</publish.releases.url>
</properties>
</profile>
<servers>
<server>
<id>
community-maven-via-job-token
</id>
<configuration>
<httpHeaders>
<property>
<name>
Job-Token
</name>
<value>
${env.CI_JOB_TOKEN}
</value>
</property>
</httpHeaders>
</configuration>
</server>
<profile>
<!-- This profile uses a personal token to authenticate, which is useful for local or manual runs. The
presence of the COMMUNITY_MAVEN_TOKEN variable triggers this and overrides the CI Token
based authentication -->
<id>
GitLab-Authenticate-With-Private-Token
</id>
<activation>
<property>
<name>
env.COMMUNITY_MAVEN_TOKEN
</name>
</property>
</activation>
<properties>
<repo.releases.id>
community-maven-repo
</repo.releases.id>
<publish.snapshots.id>
community-maven-via-private-token
</publish.snapshots.id>
<publish.releases.id>
community-maven-via-private-token
</publish.releases.id>
<server>
<id>
community-maven-via-private-token
</id>
<configuration>
<httpHeaders>
<property>
<name>
Private-Token
</name>
<value>
${env.COMMUNITY_MAVEN_TOKEN}
</value>
</property>
</httpHeaders>
</configuration>
</server>
<repo.releases.url>
https://community.opengroup.org/api/v4/groups/17/-/packages/maven
</repo.releases.url>
<publish.snapshots.url>
https://community.opengroup.org/api/v4/projects/44/packages/maven
</publish.snapshots.url>
<publish.releases.url>
https://community.opengroup.org/api/v4/projects/44/packages/maven
</publish.releases.url>
</properties>
</profile>
</profiles>
<server>
<id>
azure-auth
</id>
<configuration>
<tenant>
${env.AZURE_TENANT_ID}
</tenant>
<client>
${env.AZURE_CLIENT_ID}
</client>
<key>
${env.AZURE_CLIENT_SECRET}
</key>
<environment>
AZURE
</environment>
</configuration>
</server>
</servers>
<servers>
<server>
<id>
community-maven-via-job-token
</id>
<configuration>
<httpHeaders>
<property>
<name>
Job-Token
</name>
<value>
${env.CI_JOB_TOKEN}
</value>
</property>
</httpHeaders>
</configuration>
</server>
<server>
<id>
community-maven-via-private-token
</id>
<configuration>
<httpHeaders>
<property>
<name>
Private-Token
</name>
<value>
${env.COMMUNITY_MAVEN_TOKEN}
</value>
</property>
</httpHeaders>
</configuration>
</server>
<server>
<id>
azure-auth
</id>
<configuration>
<tenant>
${env.AZURE_TENANT_ID}
</tenant>
<client>
${env.AZURE_CLIENT_ID}
</client>
<key>
${env.AZURE_CLIENT_SECRET}
</key>
<environment>
AZURE
</environment>
</configuration>
</server>
</servers>
</settings>
This diff is collapsed.
Click to expand it.
pom.xml
+
6
−
6
View file @
70b3e26f
...
...
@@ -71,8 +71,8 @@
<repositories>
<repository>
<id>
${
gitlab-server
}
</id>
<url>
https://community.opengroup.org/api/v4/groups/17/-/packages/maven
</url>
<id>
${
repo.releases.id
}
</id>
<url>
${repo.releases.url}
</url>
</repository>
</repositories>
...
...
@@ -87,12 +87,12 @@
<distributionManagement>
<repository>
<id>
${
gitlab-server
}
</id>
<url>
https://community.opengroup.org/api/v4/projects/44/packages/maven
</url>
<id>
${
publish.releases.id
}
</id>
<url>
${publish.releases.url}
</url>
</repository>
<snapshotRepository>
<id>
${
gitlab-server
}
</id>
<url>
https://community.opengroup.org/api/v4/projects/44/packages/maven
</url>
<id>
${
publish.snapshots.id
}
</id>
<url>
${publish.snapshots.url}
</url>
</snapshotRepository>
</distributionManagement>
...
...
This diff is collapsed.
Click to expand it.
Riabokon Stanislav(EPAM)[GCP]
@Stanislav_Riabokon
mentioned in commit
091772f1
·
4 years ago
mentioned in commit
091772f1
mentioned in commit 091772f1f25492186a57cdc61e6aee02d7597bd2
Toggle commit list
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