Skip to content
Snippets Groups Projects
Commit 4fafd3d8 authored by bhill6@wisc.edu's avatar bhill6@wisc.edu
Browse files

correcting repository ID so that it uses the correct authentication, adding...

parent 53df73de
No related branches found
No related tags found
1 merge request!34correcting repository ID so that it uses the correct authentication, adding...
...@@ -11,5 +11,10 @@ ...@@ -11,5 +11,10 @@
</httpHeaders> </httpHeaders>
</configuration> </configuration>
</server> </server>
<server>
<id>uw-open-releases</id>
<username>${env.ARTIFACTORY_USER}</username>
<password>${env.ARTIFACTORY_PASSWORD}</password>
</server>
</servers> </servers>
</settings> </settings>
...@@ -13,7 +13,7 @@ One of the biggest benefits of this project is that the core data model is re-us ...@@ -13,7 +13,7 @@ One of the biggest benefits of this project is that the core data model is re-us
[Detailed usage documentation can be found at the project wiki.](https://git.doit.wisc.edu/adi-ia/uw-spring-security/wikis/home). [Detailed usage documentation can be found at the project wiki.](https://git.doit.wisc.edu/adi-ia/uw-spring-security/wikis/home).
This project was also recently the focus of an [Application Design Review Brown Bag](https://wiki.doit.wisc.edu/confluence/display/SOACOE/2016-03-04+Agenda). This project was also the focus of an [Application Design Review Brown Bag](https://wiki.doit.wisc.edu/confluence/display/SOACOE/2016-03-04+Agenda).
### Why this? ### Why this?
...@@ -68,13 +68,13 @@ and get back an instance of [UWUserDetails](uw-spring-security-core/src/main/jav ...@@ -68,13 +68,13 @@ and get back an instance of [UWUserDetails](uw-spring-security-core/src/main/jav
### Adding the dependencies to your project ### Adding the dependencies to your project
The following instructions assuming that you have access to the UW Releases repository in our [Maven Repository Manager](https://wiki.doit.wisc.edu/confluence/display/ST/Maven+Repository+Manager). The following instructions assuming that you have access to the ADI-IA group repositories in Gitlab.
```xml ```xml
<repositories> <repositories>
<repository> <repository>
<id>code.doit-uw-releases</id> <id>adi-ia-libraries</id>
<url>https://code.doit.wisc.edu/maven/content/repositories/uw-releases/</url> <url>https://git.doit.wisc.edu/api/v4/groups/15/-/packages/maven</url>
</repository> </repository>
</repositories> </repositories>
``` ```
...@@ -98,15 +98,15 @@ The uw-spring-security-sample-war is an example of how to activate the Spring `@ ...@@ -98,15 +98,15 @@ The uw-spring-security-sample-war is an example of how to activate the Spring `@
### Release Management ### Release Management
This project follows [Semantic Versioning](http://semver.org). Releases are published to the 'UW Releases' Repository in the [Shared Tools Maven Artifact Repository](https://wiki.doit.wisc.edu/confluence/display/ST/Maven+Repository+Manager) This project follows [Semantic Versioning](http://semver.org). Releases are published to the Gitlab Maven repository associated with the project.
Add the following repository to your Maven/Gradle build file: Add the following group repository to your Maven/Gradle build file:
```xml ```xml
<repositories> <repositories>
<repository> <repository>
<id>code.doit-uw-releases</id> <id>adi-ia-libraries</id>
<url>https://code.doit.wisc.edu/maven/content/repositories/uw-releases/</url> <url>https://git.doit.wisc.edu/api/v4/groups/15/-/packages/maven</url>
</repository> </repository>
</repositories> </repositories>
``` ```
\ No newline at end of file
...@@ -16,7 +16,7 @@ ...@@ -16,7 +16,7 @@
<distributionManagement> <distributionManagement>
<repository> <repository>
<id>adi-ia</id> <id>adi-ia-libraries</id>
<url>https://git.doit.wisc.edu/api/v4/projects/392/packages/maven</url> <url>https://git.doit.wisc.edu/api/v4/projects/392/packages/maven</url>
</repository> </repository>
</distributionManagement> </distributionManagement>
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment