admin
Used in:
components
- OverviewOverview
- VersionsVersions
- DependentsDependents
- DependenciesDependencies
<dependency>
<groupId>com.day.cqse</groupId>
<artifactId>admin</artifactId>
<version>4.1.12</version>
</dependency><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>
<!-- ====================================================================== -->
<!-- P A R E N T P R O J E C T D E S C R I P T I O N -->
<!-- ====================================================================== -->
<parent>
<groupId>com.day.cqse</groupId>
<artifactId>cqse</artifactId>
<version>4.1.12</version>
</parent>
<!-- ====================================================================== -->
<!-- P R O J E C T D E S C R I P T I O N -->
<!-- ====================================================================== -->
<groupId>com.day.cqse</groupId>
<artifactId>admin</artifactId>
<name>Day SE Server Admin webapp</name>
<packaging>war</packaging>
<url>https://adobe.com</url>
<licenses>
<license>
<name>License Agreement</name>
<url>http://adobe.com/go/terms</url>
<distribution>repo</distribution>
</license>
</licenses>
<organization>
<name>Adobe</name>
<url>http://www.adobe.com/</url>
</organization>
<developers>
<developer>
<name>Adobe</name>
<email>repo@adobe.com</email>
<organization>Adobe</organization>
<organizationUrl>http://www.adobe.com</organizationUrl>
</developer>
</developers>
<!-- ====================================================================== -->
<!-- D E P E N D E N C I E S -->
<!-- ====================================================================== -->
<dependencies>
<dependency>
<groupId>com.day.cqse</groupId>
<artifactId>server</artifactId>
<version>${version}</version>
<scope>provided</scope>
</dependency>
<dependency>
<groupId>javax.servlet</groupId>
<artifactId>servlet-api</artifactId>
<scope>provided</scope>
</dependency>
<dependency>
<groupId>javax.servlet</groupId>
<artifactId>jsp-api</artifactId>
<scope>provided</scope>
</dependency>
<dependency>
<groupId>tomcat</groupId>
<artifactId>jasper-runtime</artifactId>
<version>4.1.30</version>
<scope>provided</scope>
</dependency>
</dependencies>
<!-- ====================================================================== -->
<!-- B U I L D D E F I N I T I O N -->
<!-- ====================================================================== -->
<build>
<sourceDirectory>src/main/java</sourceDirectory>
<resources>
<resource>
<directory>${basedir}/src/main/java</directory>
<includes>
<include>**/*.xml</include>
<include>**/*.properties</include>
<include>**/*.txt</include>
<include>**/*.dtd</include>
</includes>
</resource>
</resources>
<plugins>
<!-- compile jsps -->
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-antrun-plugin</artifactId>
<executions>
<execution>
<phase>compile</phase>
<configuration>
<tasks>
<echo>Compiling JSPs...</echo>
<taskdef classname="org.apache.jasper.JspC" name="jasper2">
<classpath>
<path refid="maven.compile.classpath" />
</classpath>
</taskdef>
<!-- Execute JSP compiler -->
<jasper2 verbose="1" package="_jsps" compile="false" uriroot="${basedir}/src/main/jsp" outputDir="${project.build.directory}/${project.build.finalName}/WEB-INF/_jsps" />
<!-- Compile generated java files -->
<javac srcdir="${project.build.directory}/${project.build.finalName}/WEB-INF/_jsps" source="1.4" target="1.4">
<classpath>
<path refid="maven.compile.classpath" />
</classpath>
</javac>
<!-- Remove intermediate java files -->
<delete>
<fileset dir="${project.build.directory}/${project.build.finalName}/WEB-INF/_jsps" includes="**/*.java" />
</delete>
</tasks>
</configuration>
<goals>
<goal>run</goal>
</goals>
</execution>
</executions>
</plugin>
<!-- configure war plugin -->
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-war-plugin</artifactId>
<version>2.0</version>
<configuration>
<webResources>
<resource>
<directory>${basedir}/src/main/webapp</directory>
</resource>
</webResources>
</configuration>
</plugin>
<!-- skip tests -->
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-surefire-plugin</artifactId>
<configuration>
<skip>true</skip>
</configuration>
</plugin>
</plugins>
</build>
<!-- ====================================================================== -->
<!-- P R O F I L E S -->
<!-- ====================================================================== -->
<profiles>
<!--
We need to handle mac platforms seperately, since they don't
need/like the tools.jar
-->
<profile>
<!-- NON MAC BUILD -->
<id>non-mac</id>
<activation>
<os>
<family>!mac</family>
</os>
</activation>
<build>
<pluginManagement>
<plugins>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-antrun-plugin</artifactId>
<dependencies>
<!-- from admin-webapp -->
<dependency>
<groupId>com.day.cqse</groupId>
<artifactId>server</artifactId>
<version>${version}</version>
<scope>provided</scope>
</dependency>
<dependency>
<groupId>tomcat</groupId>
<artifactId>jasper-runtime</artifactId>
<version>4.1.30</version>
</dependency>
<dependency>
<groupId>tomcat</groupId>
<artifactId>jasper-compiler</artifactId>
<version>4.1.30</version>
</dependency>
<dependency>
<groupId>sun</groupId>
<artifactId>tools</artifactId>
<version>1.0</version>
<scope>system</scope>
<systemPath>${java.home}/../lib/tools.jar</systemPath>
</dependency>
</dependencies>
</plugin>
</plugins>
</pluginManagement>
</build>
</profile>
<profile>
<!-- MAC BUILD -->
<id>mac</id>
<activation>
<os>
<family>mac</family>
</os>
</activation>
<build>
<pluginManagement>
<plugins>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-antrun-plugin</artifactId>
<dependencies>
<!-- from admin-webapp -->
<dependency>
<groupId>com.day.cqse</groupId>
<artifactId>server</artifactId>
<version>${version}</version>
<scope>provided</scope>
</dependency>
<dependency>
<groupId>tomcat</groupId>
<artifactId>jasper-runtime</artifactId>
<version>4.1.30</version>
</dependency>
<dependency>
<groupId>tomcat</groupId>
<artifactId>jasper-compiler</artifactId>
<version>4.1.30</version>
</dependency>
</dependencies>
</plugin>
</plugins>
</pluginManagement>
</build>
</profile>
</profiles>
</project>