Skip to content

Commit

Permalink
Switch to local Guice module and fix SCM config.
Browse files Browse the repository at this point in the history
  • Loading branch information
pavelhoral committed Aug 3, 2022
1 parent 7a3686a commit 4749653
Show file tree
Hide file tree
Showing 4 changed files with 20 additions and 25 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -32,8 +32,6 @@
<properties>
<hostname>localhost</hostname>
<context.uri>jaspi</context.uri>

<forgerock.guice.version>2.0.0</forgerock.guice.version>
</properties>

<build>
Expand Down Expand Up @@ -143,15 +141,15 @@
</dependency>

<dependency>
<groupId>org.forgerock.commons</groupId>
<artifactId>forgerock-guice-core</artifactId>
<version>${forgerock.guice.version}</version>
<groupId>org.wrensecurity.commons</groupId>
<artifactId>wrensec-guice-core</artifactId>
<version>${project.version}</version>
</dependency>

<dependency>
<groupId>org.forgerock.commons</groupId>
<artifactId>forgerock-guice-test</artifactId>
<version>${forgerock.guice.version}</version>
<groupId>org.wrensecurity.commons</groupId>
<artifactId>wrensec-guice-test</artifactId>
<version>${project.version}</version>
<scope>test</scope>
</dependency>

Expand Down
12 changes: 4 additions & 8 deletions commons-bom/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@
<parent>
<groupId>org.wrensecurity</groupId>
<artifactId>wrensec-parent</artifactId>
<version>3.2.1</version>
<version>3.3.0</version>
<relativePath />
</parent>

Expand All @@ -39,6 +39,9 @@
<properties>
<pgpWhitelistArtifact>org.wrensecurity:wrensec-pgp-whitelist:1.5.6</pgpWhitelistArtifact>

<!-- Parent plugin version overrides -->
<mavenReleasePluginVersion>3.0.0-M6</mavenReleasePluginVersion>

<!-- Third party components versions -->
<i18nFrameworkVersion>1.4.3</i18nFrameworkVersion>
<jodaTime.version>2.10.9</jodaTime.version>
Expand Down Expand Up @@ -90,13 +93,6 @@
</repository>
</repositories>

<scm>
<url>https://github.com/WrenSecurity/wrensec-commons</url>
<connection>scm:git:git://github.com/WrenSecurity/wrensec-commons.git</connection>
<developerConnection>scm:git:git@github.com:WrenSecurity/wrensec-commons.git</developerConnection>
<tag>HEAD</tag>
</scm>

<build>
<pluginManagement>
<plugins>
Expand Down
12 changes: 3 additions & 9 deletions http-framework/http-servlet/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -60,17 +60,11 @@
</dependency>

<dependency>
<groupId>org.forgerock.commons</groupId>
<artifactId>forgerock-guice-core</artifactId>
<version>2.0.0</version>
<groupId>org.wrensecurity.commons</groupId>
<artifactId>wrensec-guice-core</artifactId>
<version>${project.version}</version>
<scope>provided</scope>
<optional>true</optional>
<exclusions>
<exclusion>
<groupId>org.mockito</groupId>
<artifactId>mockito-all</artifactId>
</exclusion>
</exclusions>
</dependency>

<dependency>
Expand Down
7 changes: 7 additions & 0 deletions pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -48,6 +48,13 @@
<url>https://github.com/WrenSecurity/wrensec-commons/issues</url>
</issueManagement>

<scm>
<url>https://github.com/WrenSecurity/wrensec-commons</url>
<connection>scm:git:git://github.com/WrenSecurity/wrensec-commons.git</connection>
<developerConnection>scm:git:git@github.com:WrenSecurity/wrensec-commons.git</developerConnection>
<tag>HEAD</tag>
</scm>

<modules>
<module>commons-bom</module>
<module>audit</module>
Expand Down

0 comments on commit 4749653

Please sign in to comment.