| <?xml version="1.0" encoding="UTF-8"?> |
| <!-- |
| Licensed to the Apache Software Foundation (ASF) under one |
| or more contributor license agreements. See the NOTICE file |
| distributed with this work for additional information |
| regarding copyright ownership. The ASF licenses this file |
| to you under the Apache License, Version 2.0 (the |
| "License"); you may not use this file except in compliance |
| with the License. You may obtain a copy of the License at |
| |
| http://www.apache.org/licenses/LICENSE-2.0 |
| |
| Unless required by applicable law or agreed to in writing, |
| software distributed under the License is distributed on an |
| "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY |
| KIND, either express or implied. See the License for the |
| specific language governing permissions and limitations |
| under the License. |
| --> |
| <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"> |
| |
| <modelVersion>4.0.0</modelVersion> |
| |
| <parent> |
| <groupId>org.apache.infra</groupId> |
| <artifactId>iampoc</artifactId> |
| <version>1.0-SNAPSHOT</version> |
| </parent> |
| |
| <name>IAM PoC - Console</name> |
| <groupId>org.apache.infra</groupId> |
| <artifactId>syncope-console</artifactId> |
| <packaging>war</packaging> |
| |
| <properties> |
| <rootpom.basedir>${basedir}/..</rootpom.basedir> |
| </properties> |
| |
| <dependencies> |
| |
| <dependency> |
| <groupId>javax.servlet</groupId> |
| <artifactId>javax.servlet-api</artifactId> |
| </dependency> |
| <dependency> |
| <groupId>javax.servlet.jsp</groupId> |
| <artifactId>javax.servlet.jsp-api</artifactId> |
| </dependency> |
| <dependency> |
| <groupId>javax.servlet</groupId> |
| <artifactId>jstl</artifactId> |
| </dependency> |
| |
| <dependency> |
| <groupId>org.apache.infra</groupId> |
| <artifactId>syncope-common</artifactId> |
| <version>${project.version}</version> |
| </dependency> |
| |
| <dependency> |
| <groupId>org.apache.syncope.client</groupId> |
| <artifactId>syncope-client-console</artifactId> |
| </dependency> |
| |
| <dependency> |
| <groupId>org.slf4j</groupId> |
| <artifactId>slf4j-api</artifactId> |
| </dependency> |
| <dependency> |
| <groupId>org.apache.logging.log4j</groupId> |
| <artifactId>log4j-api</artifactId> |
| </dependency> |
| <dependency> |
| <groupId>org.apache.logging.log4j</groupId> |
| <artifactId>log4j-core</artifactId> |
| </dependency> |
| <dependency> |
| <groupId>com.lmax</groupId> |
| <artifactId>disruptor</artifactId> |
| </dependency> |
| <dependency> |
| <groupId>org.apache.logging.log4j</groupId> |
| <artifactId>log4j-slf4j-impl</artifactId> |
| </dependency> |
| <dependency> |
| <groupId>commons-logging</groupId> |
| <artifactId>commons-logging</artifactId> |
| <scope>provided</scope> |
| </dependency> |
| <dependency> |
| <groupId>org.slf4j</groupId> |
| <artifactId>jcl-over-slf4j</artifactId> |
| </dependency> |
| |
| <dependency> |
| <groupId>org.webjars</groupId> |
| <artifactId>jquery-ui</artifactId> |
| </dependency> |
| <dependency> |
| <groupId>org.webjars</groupId> |
| <artifactId>codemirror</artifactId> |
| </dependency> |
| |
| <!-- TEST --> |
| <dependency> |
| <groupId>junit</groupId> |
| <artifactId>junit</artifactId> |
| <scope>test</scope> |
| </dependency> |
| <dependency> |
| <groupId>org.activiti</groupId> |
| <artifactId>activiti-webapp-explorer2</artifactId> |
| <type>war</type> |
| <scope>test</scope> |
| </dependency> |
| </dependencies> |
| |
| <build> |
| <finalName>syncope-console</finalName> |
| |
| <plugins> |
| <plugin> |
| <groupId>org.apache.maven.plugins</groupId> |
| <artifactId>maven-antrun-plugin</artifactId> |
| <inherited>true</inherited> |
| <executions> |
| <execution> |
| <id>setupActivitiModeler</id> |
| <phase>process-resources</phase> |
| <configuration> |
| <target> |
| <unzip src="${settings.localRepository}/org/activiti/activiti-webapp-explorer2/${activiti.version}/activiti-webapp-explorer2-${activiti.version}.war" |
| dest="${project.build.directory}/activiti-webapp-explorer2" /> |
| |
| <mkdir dir="${activiti-modeler.directory}" /> |
| <copy file="${project.build.directory}/activiti-webapp-explorer2/modeler.html" |
| todir="${activiti-modeler.directory}" /> |
| <replace file="${activiti-modeler.directory}/modeler.html" |
| token="</head>" |
| value="<script type="text/javascript">window.onunload = refreshParent; function refreshParent() { window.opener.location.reload(); }</script></head>"/> |
| <copy file="${project.build.directory}/activiti-webapp-explorer2/WEB-INF/classes/stencilset.json" |
| todir="${activiti-modeler.directory}" /> |
| |
| <mkdir dir="${activiti-modeler.directory}/editor-app" /> |
| <copy todir="${activiti-modeler.directory}/editor-app"> |
| <fileset dir="${project.build.directory}/activiti-webapp-explorer2/editor-app" /> |
| </copy> |
| <replaceregexp file="${activiti-modeler.directory}/editor-app/editor/oryx.debug.js" |
| match="ORYX.CONFIG.ROOT_PATH =.*"editor/"; //TODO: Remove last slash!!" |
| replace="BASE_PATH = window.location.toString().substr(0, window.location.toString().indexOf('/wicket')); |
| ORYX.CONFIG.ROOT_PATH = BASE_PATH + "/activiti-modeler/editor-app/editor/";" |
| byline="true"/> |
| <replace file="${activiti-modeler.directory}/editor-app/editor/oryx.debug.js" |
| token="new Ajax.Request(ACTIVITI.CONFIG.contextRoot + '/editor/stencilset?version=' + Date.now(), {" |
| value="new Ajax.Request(window.location.toString().substr(0, window.location.toString().indexOf('/activiti-modeler')) + "/activiti-modeler/stencilset.json", {"/> |
| <replace file="${activiti-modeler.directory}/editor-app/editor/oryx.debug.js" |
| token="ORYX.Editor.createByUrl(modelUrl);" |
| value="modelUrl = BASE_PATH + "/workflowDefGET"; |
| ORYX.Editor.createByUrl(modelUrl);"/> |
| <replace file="${activiti-modeler.directory}/editor-app/editor/oryx.debug.js" |
| token="ORYX.Editor.createByUrl = function(modelUrl){" |
| value="modelUrl = BASE_PATH + "/workflowDefGET"; |
| ORYX.Editor.createByUrl = function(modelUrl){"/> |
| <replace file="${activiti-modeler.directory}/editor-app/configuration/toolbar-default-actions.js" |
| token="window.location.href = "./";" |
| value="window.close();"/> |
| |
| <copy file="${basedir}/src/main/resources/url-config.js" |
| todir="${activiti-modeler.directory}/editor-app/configuration" |
| overwrite="true" /> |
| <copy file="${basedir}/src/main/resources/save-model.html" |
| todir="${activiti-modeler.directory}/editor-app/popups" |
| overwrite="true" /> |
| </target> |
| </configuration> |
| <goals> |
| <goal>run</goal> |
| </goals> |
| </execution> |
| </executions> |
| </plugin> |
| </plugins> |
| |
| <resources> |
| <resource> |
| <directory>src/main/resources</directory> |
| <filtering>true</filtering> |
| </resource> |
| </resources> |
| |
| <testResources> |
| <testResource> |
| <directory>src/test/resources</directory> |
| <filtering>true</filtering> |
| </testResource> |
| </testResources> |
| </build> |
| |
| <profiles> |
| <profile> |
| <id>embedded</id> |
| |
| <properties> |
| <conf.directory>${project.build.directory}/test-classes</conf.directory> |
| </properties> |
| |
| <dependencies> |
| <dependency> |
| <groupId>org.apache.syncope.fit</groupId> |
| <artifactId>syncope-fit-build-tools</artifactId> |
| <version>${syncope.version}</version> |
| <type>war</type> |
| <scope>test</scope> |
| </dependency> |
| <dependency> |
| <groupId>net.tirasa.connid.bundles.soap</groupId> |
| <artifactId>wssample</artifactId> |
| <type>war</type> |
| <scope>test</scope> |
| </dependency> |
| <dependency> |
| <groupId>com.h2database</groupId> |
| <artifactId>h2</artifactId> |
| <scope>test</scope> |
| </dependency> |
| </dependencies> |
| |
| <build> |
| <defaultGoal>clean verify cargo:run</defaultGoal> |
| |
| <plugins> |
| <plugin> |
| <groupId>org.apache.maven.plugins</groupId> |
| <artifactId>maven-antrun-plugin</artifactId> |
| <inherited>true</inherited> |
| <executions> |
| <execution> |
| <id>setupEmbeddedConf</id> |
| <phase>package</phase> |
| <configuration> |
| <target> |
| <delete dir="../core/target/syncope/WEB-INF/classes/domains"/> |
| <copy todir="../core/target/syncope/WEB-INF/classes/domains"> |
| <fileset dir="../core/target/test-classes/domains"/> |
| </copy> |
| <copy file="../core/target/test-classes/connid.properties" |
| todir="../core/target/syncope/WEB-INF/classes" |
| overwrite="true"/> |
| <copy file="../core/target/test-classes/db.jsp" |
| todir="../core/target/syncope" |
| overwrite="true"/> |
| |
| <copy file="${project.build.directory}/test-classes/console.properties" |
| todir="${project.build.directory}/${project.build.finalName}/WEB-INF/classes" |
| overwrite="true"/> |
| </target> |
| </configuration> |
| <goals> |
| <goal>run</goal> |
| </goals> |
| </execution> |
| </executions> |
| </plugin> |
| |
| <plugin> |
| <groupId>org.codehaus.cargo</groupId> |
| <artifactId>cargo-maven2-plugin</artifactId> |
| <inherited>true</inherited> |
| <configuration> |
| <container> |
| <dependencies> |
| <dependency> |
| <groupId>com.h2database</groupId> |
| <artifactId>h2</artifactId> |
| </dependency> |
| </dependencies> |
| </container> |
| <configuration> |
| <type>standalone</type> |
| <properties> |
| <cargo.servlet.port>${cargo.servlet.port}</cargo.servlet.port> |
| <cargo.tomcat.ajp.port>${cargo.tomcat.ajp.port}</cargo.tomcat.ajp.port> |
| <cargo.rmi.port>${cargo.rmi.port}</cargo.rmi.port> |
| |
| <cargo.jvmargs>-noverify -XX:+CMSClassUnloadingEnabled -XX:+UseConcMarkSweepGC -XX:MaxPermSize=256m</cargo.jvmargs> |
| </properties> |
| </configuration> |
| <deployables> |
| <deployable> |
| <groupId>net.tirasa.connid.bundles.soap</groupId> |
| <artifactId>wssample</artifactId> |
| <type>war</type> |
| <properties> |
| <context>wssample</context> |
| </properties> |
| </deployable> |
| <deployable> |
| <groupId>org.apache.syncope.fit</groupId> |
| <artifactId>syncope-fit-build-tools</artifactId> |
| <type>war</type> |
| <properties> |
| <context>syncope-fit-build-tools</context> |
| </properties> |
| </deployable> |
| <deployable> |
| <location>../core/target/syncope</location> |
| <properties> |
| <context>syncope</context> |
| </properties> |
| </deployable> |
| <deployable> |
| <location>${project.build.directory}/${project.build.finalName}</location> |
| <properties> |
| <context>syncope-console</context> |
| </properties> |
| </deployable> |
| </deployables> |
| </configuration> |
| </plugin> |
| </plugins> |
| </build> |
| </profile> |
| |
| <profile> |
| <id>all</id> |
| |
| <dependencies> |
| <dependency> |
| <groupId>org.apache.syncope.ext.camel</groupId> |
| <artifactId>syncope-ext-camel-client-console</artifactId> |
| <version>${syncope.version}</version> |
| </dependency> |
| </dependencies> |
| </profile> |
| </profiles> |
| </project> |