Skip to content

Commit

Permalink
5.4.3 release. Fix for #155.
Browse files Browse the repository at this point in the history
  • Loading branch information
[email protected] authored and [email protected] committed Jan 12, 2024
1 parent 3519169 commit c595f39
Show file tree
Hide file tree
Showing 36 changed files with 268 additions and 213 deletions.
6 changes: 4 additions & 2 deletions .idea/compiler.xml

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

64 changes: 39 additions & 25 deletions .idea/workspace.xml

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

4 changes: 2 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -57,7 +57,7 @@ There are a few environment variables you should define before doing anything. T
## Updating the release version

Do a global replace of the SNAPSHOT tag with the version you are creating.
E.g. replace `5.4.2` with `5.3.5`. Note this must be global in all files since this is used extensively in
E.g. replace `5.4.3` with `5.3.5`. Note this must be global in all files since this is used extensively in
the documentation. If you are updating teh website, you do not need to update
anything in `$NCSA_DEV_INPUT/oa4mp/docs` which will be replaced shortly.

Expand Down Expand Up @@ -126,7 +126,7 @@ resolution maven uses tends to have multiple jars created then deploy complains.
# Building and deploying the website

You can also update the website. You must be able to commit to Github to do this. The basic way this works is that you
1. Do a global replace of the SNAPSHOT tag with the version you are creating. E.g. replace `5.4.2` with `5.3.5`. Note this must be global in all files since this is used extensively in the documentation. You do not need to update anything in `$NCSA_DEV_INPUT/oa4mp/docs` which will be replaced shortly.
1. Do a global replace of the SNAPSHOT tag with the version you are creating. E.g. replace `5.4.3` with `5.3.5`. Note this must be global in all files since this is used extensively in the documentation. You do not need to update anything in `$NCSA_DEV_INPUT/oa4mp/docs` which will be replaced shortly.
2. run the `build.sh` script to create all of the basic documentation
3. run `$NCSA_DEV_INPUT/oa4mp-website/make-website.sh` which creates the entire website and stick it in `$NCSA_DEV_INPUT/oa4mp/docs`
4. commit everything to Git
Expand Down
12 changes: 6 additions & 6 deletions client-api/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@
<parent>
<groupId>edu.uiuc.ncsa.myproxy</groupId>
<artifactId>oa4mp</artifactId>
<version>5.4.2</version>
<version>5.4.3</version>
</parent>
<artifactId>client-api</artifactId>
<name>OAuth for MyProxy client API.</name>
Expand All @@ -22,32 +22,32 @@
<dependency>
<groupId>edu.uiuc.ncsa.myproxy</groupId>
<artifactId>client</artifactId>
<version>5.4.2</version>
<version>5.4.3</version>
</dependency>

<dependency>
<groupId>edu.uiuc.ncsa.myproxy</groupId>
<artifactId>common</artifactId>
<version>5.4.2</version>
<version>5.4.3</version>
</dependency>

<dependency>
<groupId>edu.uiuc.ncsa.myproxy</groupId>
<artifactId>oauth2</artifactId>
<version>5.4.2</version>
<version>5.4.3</version>
</dependency>

<dependency>
<groupId>edu.uiuc.ncsa.security</groupId>
<artifactId>core</artifactId>
<version>5.4.2</version>
<version>5.4.3</version>
<type>test-jar</type>
<scope>test</scope>
</dependency>
<dependency>
<groupId>edu.uiuc.ncsa.security</groupId>
<artifactId>servlet</artifactId>
<version>5.4.2</version>
<version>5.4.3</version>
</dependency>
<dependency>
<groupId>javax.servlet</groupId>
Expand Down
18 changes: 9 additions & 9 deletions client-loader/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@
<parent>
<groupId>edu.uiuc.ncsa.myproxy</groupId>
<artifactId>oa4mp</artifactId>
<version>5.4.2</version>
<version>5.4.3</version>
</parent>

<artifactId>client-loader</artifactId>
Expand All @@ -22,54 +22,54 @@
<dependency>
<groupId>edu.uiuc.ncsa.myproxy</groupId>
<artifactId>client-test</artifactId>
<version>5.4.2</version>
<version>5.4.3</version>
<type>test-jar</type>
<scope>test</scope>
</dependency>
<dependency>
<groupId>edu.uiuc.ncsa.myproxy</groupId>
<artifactId>client-api</artifactId>
<version>5.4.2</version>
<version>5.4.3</version>
</dependency>
<dependency>
<groupId>edu.uiuc.ncsa.myproxy</groupId>
<artifactId>common</artifactId>
<version>5.4.2</version>
<version>5.4.3</version>
<type>test-jar</type>
<scope>test</scope>
</dependency>
<dependency>
<groupId>edu.uiuc.ncsa.security</groupId>
<artifactId>core</artifactId>
<version>5.4.2</version>
<version>5.4.3</version>
<type>test-jar</type>
<scope>test</scope>
</dependency>
<dependency>
<groupId>edu.uiuc.ncsa.security</groupId>
<artifactId>util</artifactId>
<version>5.4.2</version>
<version>5.4.3</version>
<type>test-jar</type>
<scope>test</scope>
</dependency>
<dependency>
<groupId>edu.uiuc.ncsa.security</groupId>
<artifactId>servlet</artifactId>
<version>5.4.2</version>
<version>5.4.3</version>
</dependency>


<dependency>
<groupId>edu.uiuc.ncsa.myproxy</groupId>
<artifactId>myproxy-logon</artifactId>
<version>5.4.2</version>
<version>5.4.3</version>
</dependency>


<dependency>
<groupId>edu.uiuc.ncsa.myproxy</groupId>
<artifactId>oauth2</artifactId>
<version>5.4.2</version>
<version>5.4.3</version>
</dependency>
<dependency>
<groupId>javax.servlet</groupId>
Expand Down
22 changes: 11 additions & 11 deletions client-oauth2/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@
<parent>
<groupId>edu.uiuc.ncsa.myproxy</groupId>
<artifactId>oa4mp</artifactId>
<version>5.4.2</version>
<version>5.4.3</version>
</parent>

<artifactId>client-oauth2</artifactId>
Expand All @@ -22,31 +22,31 @@
<dependency>
<groupId>edu.uiuc.ncsa.myproxy</groupId>
<artifactId>client-webapp</artifactId>
<version>5.4.2</version>
<version>5.4.3</version>
<type>war</type>
<scope>runtime</scope>
</dependency>
<dependency>
<groupId>edu.uiuc.ncsa.myproxy</groupId>
<artifactId>client-test</artifactId>
<version>5.4.2</version>
<version>5.4.3</version>
<type>test-jar</type>
<scope>test</scope>
</dependency>
<dependency>
<groupId>edu.uiuc.ncsa.myproxy</groupId>
<artifactId>client-api</artifactId>
<version>5.4.2</version>
<version>5.4.3</version>
</dependency>
<dependency>
<groupId>edu.uiuc.ncsa.myproxy</groupId>
<artifactId>client-loader</artifactId>
<version>5.4.2</version>
<version>5.4.3</version>
</dependency>
<dependency>
<groupId>edu.uiuc.ncsa.myproxy</groupId>
<artifactId>common</artifactId>
<version>5.4.2</version>
<version>5.4.3</version>
<type>test-jar</type>
<scope>test</scope>
</dependency>
Expand All @@ -59,36 +59,36 @@
<dependency>
<groupId>edu.uiuc.ncsa.security</groupId>
<artifactId>core</artifactId>
<version>5.4.2</version>
<version>5.4.3</version>
<type>test-jar</type>
<scope>test</scope>
</dependency>

<dependency>
<groupId>edu.uiuc.ncsa.security</groupId>
<artifactId>util</artifactId>
<version>5.4.2</version>
<version>5.4.3</version>
<type>test-jar</type>
<scope>test</scope>
</dependency>
<dependency>
<groupId>edu.uiuc.ncsa.security</groupId>
<artifactId>servlet</artifactId>
<version>5.4.2</version>
<version>5.4.3</version>
</dependency>


<dependency>
<groupId>edu.uiuc.ncsa.myproxy</groupId>
<artifactId>myproxy-logon</artifactId>
<version>5.4.2</version>
<version>5.4.3</version>
</dependency>


<dependency>
<groupId>edu.uiuc.ncsa.myproxy</groupId>
<artifactId>oauth2</artifactId>
<version>5.4.2</version>
<version>5.4.3</version>
</dependency>
<dependency>
<groupId>javax.servlet</groupId>
Expand Down
Loading

0 comments on commit c595f39

Please sign in to comment.