forked from keycloak/keycloak
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request keycloak#1296 from mstruk/as7
KEYCLOAK-1301 AS7 / EAP6 adapter subsystem
- Loading branch information
Showing
55 changed files
with
1,356 additions
and
563 deletions.
There are no files selected for viewing
59 changes: 30 additions & 29 deletions
59
...ion/adapters/as7-adapter-zip/assembly.xml → ...eap6-adapter/as7-adapter-zip/assembly.xml
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,29 +1,30 @@ | ||
<assembly> | ||
<id>war-dist</id> | ||
|
||
<formats> | ||
<format>zip</format> | ||
<format>tar.gz</format> | ||
</formats> | ||
<includeBaseDirectory>false</includeBaseDirectory> | ||
|
||
<fileSets> | ||
<fileSet> | ||
<directory>${project.build.directory}/unpacked</directory> | ||
<includes> | ||
<include>org/bouncycastle/**</include> | ||
<include>net/iharder/base64/**</include> | ||
<include>org/apache/httpcomponents/**</include> | ||
<include>org/keycloak/keycloak-core/**</include> | ||
<include>org/keycloak/keycloak-adapter-core/**</include> | ||
<include>org/keycloak/keycloak-jboss-adapter-core/**</include> | ||
<include>org/keycloak/keycloak-as7-adapter/**</include> | ||
<include>org/keycloak/keycloak-as7-subsystem/**</include> | ||
</includes> | ||
<excludes> | ||
<exclude>**/*.war</exclude> | ||
</excludes> | ||
<outputDirectory>modules</outputDirectory> | ||
</fileSet> | ||
</fileSets> | ||
</assembly> | ||
<assembly> | ||
<id>war-dist</id> | ||
|
||
<formats> | ||
<format>zip</format> | ||
<format>tar.gz</format> | ||
</formats> | ||
<includeBaseDirectory>false</includeBaseDirectory> | ||
|
||
<fileSets> | ||
<fileSet> | ||
<directory>${project.build.directory}/unpacked</directory> | ||
<includes> | ||
<include>org/bouncycastle/**</include> | ||
<include>net/iharder/base64/**</include> | ||
<include>org/apache/httpcomponents/**</include> | ||
<include>org/keycloak/keycloak-core/**</include> | ||
<include>org/keycloak/keycloak-adapter-core/**</include> | ||
<include>org/keycloak/keycloak-jboss-adapter-core/**</include> | ||
<include>org/keycloak/keycloak-as7-adapter/**</include> | ||
<include>org/keycloak/keycloak-as7-subsystem/**</include> | ||
<include>org/keycloak/keycloak-adapter-subsystem/**</include> | ||
</includes> | ||
<excludes> | ||
<exclude>**/*.war</exclude> | ||
</excludes> | ||
<outputDirectory>modules</outputDirectory> | ||
</fileSet> | ||
</fileSets> | ||
</assembly> |
158 changes: 79 additions & 79 deletions
158
...ribution/adapters/as7-adapter-zip/pom.xml → .../as7-eap6-adapter/as7-adapter-zip/pom.xml
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,79 +1,79 @@ | ||
<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/maven-v4_0_0.xsd"> | ||
<modelVersion>4.0.0</modelVersion> | ||
<parent> | ||
<artifactId>keycloak-parent</artifactId> | ||
<groupId>org.keycloak</groupId> | ||
<version>1.3.0.Final-SNAPSHOT</version> | ||
<relativePath>../../../pom.xml</relativePath> | ||
</parent> | ||
|
||
<artifactId>keycloak-as7-adapter-dist</artifactId> | ||
<packaging>pom</packaging> | ||
<name>Keycloak AS7 Adapter Distro</name> | ||
<description/> | ||
|
||
<dependencies> | ||
<dependency> | ||
<groupId>org.keycloak</groupId> | ||
<artifactId>keycloak-as7-adapter</artifactId> | ||
</dependency> | ||
<dependency> | ||
<groupId>org.keycloak</groupId> | ||
<artifactId>keycloak-jboss-modules</artifactId> | ||
<type>zip</type> | ||
</dependency> | ||
</dependencies> | ||
<build> | ||
<plugins> | ||
<plugin> | ||
<groupId>org.apache.maven.plugins</groupId> | ||
<artifactId>maven-dependency-plugin</artifactId> | ||
<executions> | ||
<execution> | ||
<id>unpack</id> | ||
<phase>prepare-package</phase> | ||
<goals> | ||
<goal>unpack</goal> | ||
</goals> | ||
<configuration> | ||
<artifactItems> | ||
<artifactItem> | ||
<groupId>org.keycloak</groupId> | ||
<artifactId>keycloak-jboss-modules</artifactId> | ||
<type>zip</type> | ||
<outputDirectory>${project.build.directory}/unpacked</outputDirectory> | ||
</artifactItem> | ||
</artifactItems> | ||
</configuration> | ||
</execution> | ||
</executions> | ||
</plugin> | ||
<plugin> | ||
<artifactId>maven-assembly-plugin</artifactId> | ||
<executions> | ||
<execution> | ||
<id>assemble</id> | ||
<phase>package</phase> | ||
<goals> | ||
<goal>single</goal> | ||
</goals> | ||
<configuration> | ||
<descriptors> | ||
<descriptor>assembly.xml</descriptor> | ||
</descriptors> | ||
<outputDirectory> | ||
target | ||
</outputDirectory> | ||
<workDirectory> | ||
target/assembly/work | ||
</workDirectory> | ||
<appendAssemblyId>false</appendAssemblyId> | ||
</configuration> | ||
</execution> | ||
</executions> | ||
</plugin> | ||
</plugins> | ||
</build> | ||
|
||
</project> | ||
<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/maven-v4_0_0.xsd"> | ||
<modelVersion>4.0.0</modelVersion> | ||
<parent> | ||
<artifactId>keycloak-parent</artifactId> | ||
<groupId>org.keycloak</groupId> | ||
<version>1.3.0.Final-SNAPSHOT</version> | ||
<relativePath>../../../../pom.xml</relativePath> | ||
</parent> | ||
|
||
<artifactId>keycloak-as7-adapter-dist</artifactId> | ||
<packaging>pom</packaging> | ||
<name>Keycloak AS7 Adapter Distro</name> | ||
<description/> | ||
|
||
<dependencies> | ||
<dependency> | ||
<groupId>org.keycloak</groupId> | ||
<artifactId>keycloak-as7-adapter</artifactId> | ||
</dependency> | ||
<dependency> | ||
<groupId>org.keycloak</groupId> | ||
<artifactId>keycloak-as7-modules</artifactId> | ||
<type>zip</type> | ||
</dependency> | ||
</dependencies> | ||
<build> | ||
<plugins> | ||
<plugin> | ||
<groupId>org.apache.maven.plugins</groupId> | ||
<artifactId>maven-dependency-plugin</artifactId> | ||
<executions> | ||
<execution> | ||
<id>unpack</id> | ||
<phase>prepare-package</phase> | ||
<goals> | ||
<goal>unpack</goal> | ||
</goals> | ||
<configuration> | ||
<artifactItems> | ||
<artifactItem> | ||
<groupId>org.keycloak</groupId> | ||
<artifactId>keycloak-as7-modules</artifactId> | ||
<type>zip</type> | ||
<outputDirectory>${project.build.directory}/unpacked</outputDirectory> | ||
</artifactItem> | ||
</artifactItems> | ||
</configuration> | ||
</execution> | ||
</executions> | ||
</plugin> | ||
<plugin> | ||
<artifactId>maven-assembly-plugin</artifactId> | ||
<executions> | ||
<execution> | ||
<id>assemble</id> | ||
<phase>package</phase> | ||
<goals> | ||
<goal>single</goal> | ||
</goals> | ||
<configuration> | ||
<descriptors> | ||
<descriptor>assembly.xml</descriptor> | ||
</descriptors> | ||
<outputDirectory> | ||
target | ||
</outputDirectory> | ||
<workDirectory> | ||
target/assembly/work | ||
</workDirectory> | ||
<appendAssemblyId>false</appendAssemblyId> | ||
</configuration> | ||
</execution> | ||
</executions> | ||
</plugin> | ||
</plugins> | ||
</build> | ||
|
||
</project> |
22 changes: 22 additions & 0 deletions
22
distribution/adapters/as7-eap6-adapter/as7-modules/assembly.xml
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,22 @@ | ||
<assembly> | ||
<id>dist</id> | ||
|
||
<formats> | ||
<format>zip</format> | ||
</formats> | ||
<includeBaseDirectory>false</includeBaseDirectory> | ||
|
||
<fileSets> | ||
<fileSet> | ||
<directory>../../</directory> | ||
<includes> | ||
<include>License.html</include> | ||
</includes> | ||
<outputDirectory></outputDirectory> | ||
</fileSet> | ||
<fileSet> | ||
<directory>${project.build.directory}/modules</directory> | ||
<outputDirectory></outputDirectory> | ||
</fileSet> | ||
</fileSets> | ||
</assembly> |
89 changes: 89 additions & 0 deletions
89
distribution/adapters/as7-eap6-adapter/as7-modules/build.xml
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,89 @@ | ||
<!-- | ||
~ JBoss, Home of Professional Open Source. | ||
~ Copyright 2012, Red Hat, Inc., and individual contributors | ||
~ as indicated by the @author tags. See the copyright.txt file in the | ||
~ distribution for a full listing of individual contributors. | ||
~ | ||
~ This is free software; you can redistribute it and/or modify it | ||
~ under the terms of the GNU Lesser General Public License as | ||
~ published by the Free Software Foundation; either version 2.1 of | ||
~ the License, or (at your option) any later version. | ||
~ | ||
~ This software is distributed in the hope that it will be useful, | ||
~ but WITHOUT ANY WARRANTY; without even the implied warranty of | ||
~ MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU | ||
~ Lesser General Public License for more details. | ||
~ | ||
~ You should have received a copy of the GNU Lesser General Public | ||
~ License along with this software; if not, write to the Free | ||
~ Software Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA | ||
~ 02110-1301 USA, or see the FSF site: http://www.fsf.org. | ||
--> | ||
|
||
<project name="module-repository" basedir="." default="all"> | ||
|
||
<import file="lib.xml"/> | ||
|
||
<property name="output.dir" value="target"/> | ||
|
||
<target name="all"> | ||
<antcall target="modules"> | ||
<param name="mavenized.modules" value="false"/> | ||
<param name="output.dir" value="target"/> | ||
</antcall> | ||
</target> | ||
|
||
|
||
<target name="modules"> | ||
|
||
<!-- server min dependencies --> | ||
|
||
<module-def name="org.apache.httpcomponents" slot="4.3"> | ||
<maven-resource group="org.apache.httpcomponents" artifact="httpclient"/> | ||
<maven-resource group="org.apache.httpcomponents" artifact="httpcore"/> | ||
<maven-resource group="org.apache.httpcomponents" artifact="httpmime"/> | ||
</module-def> | ||
|
||
<module-def name="org.keycloak.keycloak-core"> | ||
<maven-resource group="org.keycloak" artifact="keycloak-core"/> | ||
</module-def> | ||
|
||
<module-def name="net.iharder.base64"> | ||
<maven-resource group="net.iharder" artifact="base64"/> | ||
</module-def> | ||
|
||
<module-def name="org.bouncycastle"> | ||
<maven-resource group="org.bouncycastle" artifact="bcprov-jdk15on"/> | ||
<maven-resource group="org.bouncycastle" artifact="bcpkix-jdk15on"/> | ||
</module-def> | ||
|
||
<!-- subsystems --> | ||
|
||
<module-def name="org.keycloak.keycloak-adapter-core"> | ||
<maven-resource group="org.keycloak" artifact="keycloak-adapter-core"/> | ||
</module-def> | ||
|
||
<module-def name="org.keycloak.keycloak-jboss-adapter-core"> | ||
<maven-resource group="org.keycloak" artifact="keycloak-jboss-adapter-core"/> | ||
</module-def> | ||
|
||
<module-def name="org.keycloak.keycloak-as7-adapter"> | ||
<maven-resource group="org.keycloak" artifact="keycloak-as7-adapter"/> | ||
<maven-resource group="org.keycloak" artifact="keycloak-tomcat-core-adapter"/> | ||
</module-def> | ||
|
||
<module-def name="org.keycloak.keycloak-as7-subsystem"> | ||
<maven-resource group="org.keycloak" artifact="keycloak-as7-subsystem"/> | ||
</module-def> | ||
|
||
</target> | ||
|
||
<target name="clean-target"> | ||
<delete dir="${output.dir}"/> | ||
</target> | ||
|
||
<target name="clean" depends="clean-target"> | ||
<delete file="maven-ant-tasks.jar"/> | ||
</target> | ||
|
||
</project> |
Oops, something went wrong.