Skip to content

Commit

Permalink
Getting ready for release
Browse files Browse the repository at this point in the history
  • Loading branch information
ahus1 committed Oct 9, 2015
1 parent 6059b96 commit 71d394a
Show file tree
Hide file tree
Showing 14 changed files with 187 additions and 80 deletions.
4 changes: 4 additions & 0 deletions .gitignore
Original file line number Diff line number Diff line change
@@ -1,2 +1,6 @@
/**/target
/keycloak-server
/settings.xml
*.releaseBackup
release.properties
*-reduced-pom.xml
2 changes: 1 addition & 1 deletion .idea/artifacts/keycloak_war_war.xml

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

6 changes: 3 additions & 3 deletions .idea/artifacts/keycloak_war_war_exploded.xml

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

2 changes: 1 addition & 1 deletion .idea/artifacts/simple_war_war.xml

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

6 changes: 3 additions & 3 deletions .idea/artifacts/simple_war_war_exploded.xml

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

24 changes: 18 additions & 6 deletions domain/pom.xml
Original file line number Diff line number Diff line change
@@ -1,11 +1,9 @@
<?xml version="1.0" encoding="UTF-8"?>
<project xmlns="http://maven.apache.org/POM/4.0.0"
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">
<project xmlns="http://maven.apache.org/POM/4.0.0" 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">
<parent>
<artifactId>lottery</artifactId>
<groupId>de.ahus1.lottery</groupId>
<version>1.0-SNAPSHOT</version>
<groupId>de.ahus1.keycloak.dropwizard</groupId>
<artifactId>keycloak-dropwizard-parent</artifactId>
<version>0.1.9-SNAPSHOT</version>
</parent>
<modelVersion>4.0.0</modelVersion>

Expand All @@ -26,4 +24,18 @@
</dependency>
</dependencies>

<build>
<plugins>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-deploy-plugin</artifactId>
<version>2.8.2</version>
<configuration>
<skip>true</skip>
<updateReleaseInfo>false</updateReleaseInfo>
</configuration>
</plugin>
</plugins>
</build>

</project>
29 changes: 17 additions & 12 deletions keycloak-dropwizard-bearer/pom.xml
Original file line number Diff line number Diff line change
@@ -1,11 +1,9 @@
<?xml version="1.0" encoding="UTF-8"?>
<project xmlns="http://maven.apache.org/POM/4.0.0"
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">
<project xmlns="http://maven.apache.org/POM/4.0.0" 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">
<parent>
<artifactId>lottery</artifactId>
<groupId>de.ahus1.lottery</groupId>
<version>1.0-SNAPSHOT</version>
<groupId>de.ahus1.keycloak.dropwizard</groupId>
<artifactId>keycloak-dropwizard-parent</artifactId>
<version>0.1.9-SNAPSHOT</version>
</parent>
<modelVersion>4.0.0</modelVersion>

Expand Down Expand Up @@ -39,9 +37,9 @@

<dependencies>
<dependency>
<groupId>de.ahus1.lottery</groupId>
<groupId>de.ahus1.keycloak.dropwizard</groupId>
<artifactId>domain</artifactId>
<version>1.0-SNAPSHOT</version>
<version>0.1.9-SNAPSHOT</version>
</dependency>

<dependency>
Expand Down Expand Up @@ -116,6 +114,15 @@
<build>
<plugins>

<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-deploy-plugin</artifactId>
<version>2.8.2</version>
<configuration>
<skip>true</skip>
</configuration>
</plugin>

<plugin>
<groupId>org.apache.maven.plugins
</groupId>
Expand Down Expand Up @@ -193,10 +200,8 @@
</goals>
<configuration>
<transformers>
<transformer
implementation="org.apache.maven.plugins.shade.resource.ServicesResourceTransformer"/>
<transformer
implementation="org.apache.maven.plugins.shade.resource.ManifestResourceTransformer">
<transformer implementation="org.apache.maven.plugins.shade.resource.ServicesResourceTransformer" />
<transformer implementation="org.apache.maven.plugins.shade.resource.ManifestResourceTransformer">
<mainClass>
de.ahus1.sightings.app.SightingApplication
</mainClass>
Expand Down
31 changes: 18 additions & 13 deletions keycloak-dropwizard-jaxrs-example/pom.xml
Original file line number Diff line number Diff line change
@@ -1,26 +1,24 @@
<?xml version="1.0" encoding="UTF-8"?>
<project xmlns="http://maven.apache.org/POM/4.0.0"
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">
<project xmlns="http://maven.apache.org/POM/4.0.0" 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">
<parent>
<artifactId>lottery</artifactId>
<groupId>de.ahus1.lottery</groupId>
<version>1.0-SNAPSHOT</version>
<groupId>de.ahus1.keycloak.dropwizard</groupId>
<artifactId>keycloak-dropwizard-parent</artifactId>
<version>0.1.9-SNAPSHOT</version>
</parent>
<modelVersion>4.0.0</modelVersion>

<artifactId>keycloak-dropwizard-jaxrs-example</artifactId>

<dependencies>
<dependency>
<groupId>de.ahus1.lottery</groupId>
<groupId>de.ahus1.keycloak.dropwizard</groupId>
<artifactId>domain</artifactId>
<version>1.0-SNAPSHOT</version>
<version>0.1.9-SNAPSHOT</version>
</dependency>
<dependency>
<artifactId>keycloak-dropwizard</artifactId>
<groupId>de.ahus1.keycloak.dropwizard</groupId>
<version>1.0-SNAPSHOT</version>
<version>0.1.9-SNAPSHOT</version>
</dependency>

<dependency>
Expand Down Expand Up @@ -81,6 +79,15 @@
<build>
<plugins>

<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-deploy-plugin</artifactId>
<version>2.8.2</version>
<configuration>
<skip>true</skip>
</configuration>
</plugin>

<plugin>
<groupId>org.apache.maven.plugins
</groupId>
Expand Down Expand Up @@ -158,10 +165,8 @@
</goals>
<configuration>
<transformers>
<transformer
implementation="org.apache.maven.plugins.shade.resource.ServicesResourceTransformer"/>
<transformer
implementation="org.apache.maven.plugins.shade.resource.ManifestResourceTransformer">
<transformer implementation="org.apache.maven.plugins.shade.resource.ServicesResourceTransformer" />
<transformer implementation="org.apache.maven.plugins.shade.resource.ManifestResourceTransformer">
<mainClass>
de.ahus1.sightings.app.SightingApplication
</mainClass>
Expand Down
11 changes: 4 additions & 7 deletions keycloak-dropwizard-jaxrs/pom.xml
Original file line number Diff line number Diff line change
@@ -1,16 +1,13 @@
<?xml version="1.0" encoding="UTF-8"?>
<project xmlns="http://maven.apache.org/POM/4.0.0"
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">
<project xmlns="http://maven.apache.org/POM/4.0.0" 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">
<parent>
<artifactId>lottery</artifactId>
<groupId>de.ahus1.lottery</groupId>
<version>1.0-SNAPSHOT</version>
<groupId>de.ahus1.keycloak.dropwizard</groupId>
<artifactId>keycloak-dropwizard-parent</artifactId>
<version>0.1.9-SNAPSHOT</version>
</parent>
<modelVersion>4.0.0</modelVersion>

<artifactId>keycloak-dropwizard</artifactId>
<groupId>de.ahus1.keycloak.dropwizard</groupId>

<dependencies>
<dependency>
Expand Down
28 changes: 16 additions & 12 deletions keycloak-dropwizard-jetty/pom.xml
Original file line number Diff line number Diff line change
@@ -1,21 +1,19 @@
<?xml version="1.0" encoding="UTF-8"?>
<project xmlns="http://maven.apache.org/POM/4.0.0"
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">
<project xmlns="http://maven.apache.org/POM/4.0.0" 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">
<parent>
<artifactId>lottery</artifactId>
<groupId>de.ahus1.lottery</groupId>
<version>1.0-SNAPSHOT</version>
<groupId>de.ahus1.keycloak.dropwizard</groupId>
<artifactId>keycloak-dropwizard-parent</artifactId>
<version>0.1.9-SNAPSHOT</version>
</parent>
<modelVersion>4.0.0</modelVersion>

<artifactId>keycloak-dropwizard-jetty</artifactId>

<dependencies>
<dependency>
<groupId>de.ahus1.lottery</groupId>
<groupId>de.ahus1.keycloak.dropwizard</groupId>
<artifactId>domain</artifactId>
<version>1.0-SNAPSHOT</version>
<version>0.1.9-SNAPSHOT</version>
</dependency>

<dependency>
Expand Down Expand Up @@ -71,6 +69,14 @@

<build>
<plugins>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-deploy-plugin</artifactId>
<version>2.8.2</version>
<configuration>
<skip>true</skip>
</configuration>
</plugin>
<plugin>
<groupId>org.apache.maven.plugins
</groupId>
Expand Down Expand Up @@ -148,10 +154,8 @@
</goals>
<configuration>
<transformers>
<transformer
implementation="org.apache.maven.plugins.shade.resource.ServicesResourceTransformer"/>
<transformer
implementation="org.apache.maven.plugins.shade.resource.ManifestResourceTransformer">
<transformer implementation="org.apache.maven.plugins.shade.resource.ServicesResourceTransformer" />
<transformer implementation="org.apache.maven.plugins.shade.resource.ManifestResourceTransformer">
<mainClass>
de.ahus1.sightings.app.SightingApplication
</mainClass>
Expand Down
27 changes: 19 additions & 8 deletions keycloak-war/pom.xml
Original file line number Diff line number Diff line change
@@ -1,11 +1,9 @@
<?xml version="1.0" encoding="UTF-8"?>
<project xmlns="http://maven.apache.org/POM/4.0.0"
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">
<project xmlns="http://maven.apache.org/POM/4.0.0" 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">
<parent>
<artifactId>lottery</artifactId>
<groupId>de.ahus1.lottery</groupId>
<version>1.0-SNAPSHOT</version>
<groupId>de.ahus1.keycloak.dropwizard</groupId>
<artifactId>keycloak-dropwizard-parent</artifactId>
<version>0.1.9-SNAPSHOT</version>
</parent>
<modelVersion>4.0.0</modelVersion>

Expand All @@ -26,9 +24,9 @@
<version>2.3.23</version>
</dependency>
<dependency>
<groupId>de.ahus1.lottery</groupId>
<groupId>de.ahus1.keycloak.dropwizard</groupId>
<artifactId>domain</artifactId>
<version>1.0-SNAPSHOT</version>
<version>0.1.9-SNAPSHOT</version>
</dependency>
<dependency>
<groupId>org.keycloak</groupId>
Expand All @@ -38,6 +36,19 @@
</dependency>
</dependencies>

<build>
<plugins>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-deploy-plugin</artifactId>
<version>2.8.2</version>
<configuration>
<skip>true</skip>
</configuration>
</plugin>
</plugins>
</build>

<profiles>
<profile>
<id>keycloak-war</id>
Expand Down
Loading

0 comments on commit 71d394a

Please sign in to comment.