Skip to content

Commit

Permalink
FIX samples version from parent
Browse files Browse the repository at this point in the history
  • Loading branch information
vharseko committed Jul 19, 2022
1 parent 7943110 commit 3e154c8
Show file tree
Hide file tree
Showing 2 changed files with 11 additions and 60 deletions.
37 changes: 6 additions & 31 deletions openam-samples/custom-authentication-module/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -18,40 +18,29 @@
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
<modelVersion>4.0.0</modelVersion>

<parent>
<groupId>org.openidentityplatform.openam</groupId>
<artifactId>openam</artifactId>
<version>14.6.7-SNAPSHOT</version>
</parent>
<groupId>org.openidentityplatform.openam.examples</groupId>
<artifactId>custom-authentication-module</artifactId>
<version>14.0.0-SNAPSHOT</version>
<packaging>jar</packaging>

<name>OpenAM Custom Authentication Module</name>

<properties>
<openam.version>14.0.0-SNAPSHOT</openam.version>
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
</properties>

<!-- <repositories> -->
<!-- <repository> -->
<!-- <id>forgerock-releases</id> -->
<!-- <url>http://maven.forgerock.org/repo/releases</url> -->
<!-- </repository> -->
<!-- <repository> -->
<!-- <id>forgerock-snapshots</id> -->
<!-- <url>http://maven.forgerock.org/repo/snapshots</url> -->
<!-- </repository> -->
<!-- </repositories> -->

<dependencies>
<dependency>
<groupId>org.openidentityplatform.openam</groupId>
<artifactId>openam-core</artifactId>
<version>${openam.version}</version>
</dependency>
<dependency>
<groupId>org.openidentityplatform.openam</groupId>
<artifactId>openam-shared</artifactId>
<version>${openam.version}</version>
</dependency>
<dependency>
<groupId>javax.servlet</groupId>
Expand All @@ -60,18 +49,4 @@
<scope>provided</scope>
</dependency>
</dependencies>

<build>
<plugins>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-compiler-plugin</artifactId>
<version>3.0</version>
<configuration>
<source>1.6</source>
<target>1.6</target>
</configuration>
</plugin>
</plugins>
</build>
</project>
</project>
34 changes: 5 additions & 29 deletions openam-samples/policy-evaluation-plugin/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -19,50 +19,26 @@
xsi:schemaLocation="http://maven.apache.org/POM/4.0.0
http://maven.apache.org/xsd/maven-4.0.0.xsd">
<modelVersion>4.0.0</modelVersion>

<parent>
<groupId>org.openidentityplatform.openam</groupId>
<artifactId>openam</artifactId>
<version>14.6.7-SNAPSHOT</version>
</parent>
<groupId>org.openidentityplatform.openam.examples</groupId>
<artifactId>policy-evaluation-plugin</artifactId>
<version>14.0.0-SNAPSHOT</version>
<packaging>jar</packaging>

<name>OpenAM Policy Evaluation Plugin</name>

<properties>
<openam.version>14.0.0-SNAPSHOT</openam.version>
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
</properties>

<!-- <repositories> -->
<!-- <repository> -->
<!-- <id>forgerock-releases</id> -->
<!-- <url>http://maven.forgerock.org/repo/releases</url> -->
<!-- </repository> -->
<!-- <repository> -->
<!-- <id>forgerock-snapshots</id> -->
<!-- <url>http://maven.forgerock.org/repo/snapshots</url> -->
<!-- </repository> -->
<!-- </repositories> -->

<dependencies>
<dependency>
<groupId>org.openidentityplatform.openam</groupId>
<artifactId>openam-entitlements</artifactId>
<version>${openam.version}</version>
</dependency>
</dependencies>

<build>
<plugins>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-compiler-plugin</artifactId>
<version>3.1</version>
<configuration>
<source>1.6</source>
<target>1.6</target>
</configuration>
</plugin>
</plugins>
</build>
</project>

0 comments on commit 3e154c8

Please sign in to comment.