Skip to content

Commit

Permalink
[DICE-UNC/jargon#449] Add jargon-extensions-jwt release for 4.3.4.0.
Browse files Browse the repository at this point in the history
  • Loading branch information
korydraughn committed Aug 30, 2024
1 parent e08814e commit 8c22bb4
Show file tree
Hide file tree
Showing 9 changed files with 165 additions and 4 deletions.
Binary file not shown.
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
9b49a8eec5b9a78c6040837dfed471f2
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
cc4faf7d1f43114b1f721d8a71dd0c167f493fbe
Original file line number Diff line number Diff line change
@@ -0,0 +1,156 @@
<?xml version="1.0"?>
<project
xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd"
xmlns="http://maven.apache.org/POM/4.0.0"
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance">
<modelVersion>4.0.0</modelVersion>
<parent>
<groupId>org.irods</groupId>
<artifactId>jargon-pom</artifactId>
<version>4.3.4.0-RELEASE</version>
</parent>
<artifactId>irodsext-jwt-service</artifactId>
<name>irodsext-jwt-service</name>
<repositories>
<repository>
<id>dice.repository snaps</id>
<name>dice.repository.snapshots</name>
<url>https://raw.github.com/DICE-UNC/DICE-Maven/master/snapshots</url>
<releases>
<enabled>true</enabled>
</releases>
<snapshots>
<enabled>true</enabled>
<updatePolicy>always</updatePolicy>
<checksumPolicy>warn</checksumPolicy>
</snapshots>
</repository>
<repository>
<id>dice.repository</id>
<name>dice.repository</name>
<url>https://raw.github.com/DICE-UNC/DICE-Maven/master/releases</url>
<releases>
<enabled>true</enabled>
</releases>
<snapshots>
<enabled>true</enabled>
<updatePolicy>always</updatePolicy>
<checksumPolicy>warn</checksumPolicy>
</snapshots>
</repository>
<repository>
<id>maven2-repository.dev.java.net</id>
<name>Java.net Repository for Maven</name>
<url>http://download.java.net/maven/2/</url>
<layout>default</layout>
</repository>
</repositories>
<distributionManagement>
<repository>
<id>internal.repo</id>
<name>internal.repo</name>
<url>file://${git.repo.root}/releases</url>
</repository>
<snapshotRepository>
<id>internal.repo.snapshot</id>
<name>internal.repo.snapshot</name>
<url>file://${git.repo.root}/snapshots</url>
</snapshotRepository>
</distributionManagement>
<dependencies>
<dependency>
<groupId>junit</groupId>
<artifactId>junit</artifactId>
<scope>compile</scope>
</dependency>
<dependency>
<groupId>io.jsonwebtoken</groupId>
<artifactId>jjwt-api</artifactId>
</dependency>
<dependency>
<groupId>io.jsonwebtoken</groupId>
<artifactId>jjwt-impl</artifactId>
<scope>runtime</scope>
</dependency>
<dependency>
<groupId>io.jsonwebtoken</groupId>
<artifactId>jjwt-jackson</artifactId>
<scope>runtime</scope>
</dependency>
<dependency>
<groupId>org.slf4j</groupId>
<artifactId>slf4j-api</artifactId>
</dependency>
<dependency>
<groupId>org.slf4j</groupId>
<artifactId>slf4j-log4j12</artifactId>
</dependency>
<dependency>
<groupId>org.slf4j</groupId>
<artifactId>slf4j-log4j12</artifactId>
</dependency>
<dependency>
<groupId>org.mockito</groupId>
<artifactId>mockito-core</artifactId>
<scope>test</scope>
</dependency>
</dependencies>
<description>Tools for managing jwts used by associated microservices</description>
<build>
<plugins>
<plugin>
<artifactId>maven-antrun-plugin</artifactId>
<executions>
<execution>
<id>0</id>
<phase>validate</phase>
<configuration>
<tasks>
<delete
file="${basedir}/src/test/resources/testing.properties" />
<touch
file="${basedir}/src/test/resources/testing.properties"
mkdirs="true" />
<echo
file="${basedir}/src/test/resources/testing.properties"
append="true">
test.confirm=${jargon.test.confirm}
test.data.directory=${jargon.test.data.directory}
test.irods.admin=${jargon.test.irods.admin}
test.irods.admin.password=${jargon.test.irods.admin.password}
test.irods.user=${jargon.test.irods.user}
test.irods.password=${jargon.test.irods.password}
test.irods.resource=${jargon.test.irods.resource}
test2.irods.user=${jargon.test.irods.user2}
test2.irods.password=${jargon.test.irods.password2}
test2.irods.resource=${jargon.test.irods.resource2}
test3.irods.user=${jargon.test.irods.user3}
test3.irods.password=${jargon.test.irods.password3}
test3.irods.resource=${jargon.test.irods.resource3}
test.irods.host=${jargon.test.irods.host}
test.irods.port=${jargon.test.irods.port}
test.irods.zone=${jargon.test.irods.zone}
test.resource.group=${jargon.test.resource.group}
test.irods.userDN=${jargon.test.irods.userDN}
test.irods.scratch.subdir=${jargon.test.irods.scratch.subdir}
</echo>
</tasks>
</configuration>
<goals>
<goal>run</goal>
</goals>
</execution>
</executions>
</plugin>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-compiler-plugin</artifactId>
<version>2.3.2</version>
<configuration>
<debug>true</debug>
</configuration>
</plugin>
</plugins>
</build>

</project>
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
7b1d3ba5af861737cdc7c8c150e6e138
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
b5ab515eff84ce4d638d40650906385ceda53a9e
5 changes: 3 additions & 2 deletions releases/org/irods/irodsext-jwt-service/maven-metadata.xml
Original file line number Diff line number Diff line change
Expand Up @@ -3,15 +3,16 @@
<groupId>org.irods</groupId>
<artifactId>irodsext-jwt-service</artifactId>
<versioning>
<release>4.3.3.0-RELEASE</release>
<release>4.3.4.0-RELEASE</release>
<versions>
<version>4.3.2.0-RELEASE</version>
<version>4.3.2.1-RELEASE</version>
<version>4.3.2.2-RELEASE</version>
<version>4.3.2.4-RELEASE</version>
<version>4.3.2.5-RELEASE</version>
<version>4.3.3.0-RELEASE</version>
<version>4.3.4.0-RELEASE</version>
</versions>
<lastUpdated>20221215154832</lastUpdated>
<lastUpdated>20240830131316</lastUpdated>
</versioning>
</metadata>
Original file line number Diff line number Diff line change
@@ -1 +1 @@
5c4ee6e53902365c814b7cb60c7298c6
91a8588e381377d3d246416648c379d2
Original file line number Diff line number Diff line change
@@ -1 +1 @@
133349968f27aaaeb50e95815cc83d801eb116e9
3ad4a73068187a89136865b823578eca20a3d9c3

0 comments on commit 8c22bb4

Please sign in to comment.