oa4mp-server-oauth2-admin
Used in:
components
- OverviewOverview
- VersionsVersions
- DependentsDependents
- DependenciesDependencies
<dependency> <groupId>edu.uiuc.ncsa.myproxy</groupId> <artifactId>oa4mp-server-oauth2-admin</artifactId> <version>1.2.1</version> </dependency>
<?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"> <modelVersion>4.0.0</modelVersion> <parent> <groupId>edu.uiuc.ncsa.myproxy</groupId> <artifactId>myproxy</artifactId> <version>1.2.1</version> </parent> <artifactId>oa4mp-server-oauth2-admin</artifactId> <name>OAuth 2.0 for MyProxy administrative tools</name> <packaging>jar</packaging> <dependencies> <!-- Need this for the monitor --> <dependency> <groupId>edu.uiuc.ncsa.myproxy</groupId> <artifactId>oa4mp-client-loader-oauth2</artifactId> <version>1.2.1</version> </dependency> <dependency> <groupId>edu.uiuc.ncsa.myproxy</groupId> <artifactId>oa4mp-server-admin</artifactId> <version>1.2.1</version> </dependency> <dependency> <groupId>edu.uiuc.ncsa.myproxy</groupId> <artifactId>oa4mp-server-loader-oauth2</artifactId> <version>1.2.1</version> </dependency> <dependency> <groupId>edu.uiuc.ncsa.security.delegation</groupId> <artifactId>ncsa-security-oauth-2.0</artifactId> <version>1.2.1</version> </dependency> <dependency> <groupId>javax.mail</groupId> <artifactId>mail</artifactId> <version>1.4</version> </dependency> </dependencies> <build> <finalName>oa2-admin</finalName> </build> <profiles> <profile> <id>cli</id> <build> <plugins> <plugin> <groupId>org.dstovall</groupId> <artifactId>onejar-maven-plugin</artifactId> <version>1.4.5</version> <executions> <execution> <configuration> <mainClass>edu.uiuc.ncsa.myproxy.oauth2.tools.OA2Commands</mainClass> <filename>oa2-cli.jar</filename> </configuration> <goals> <goal>one-jar</goal> </goals> </execution> </executions> </plugin> </plugins> </build> </profile> <profile> <id>verifier</id> <build> <plugins> <plugin> <groupId>org.dstovall</groupId> <artifactId>onejar-maven-plugin</artifactId> <version>1.4.5</version> <executions> <execution> <configuration> <mainClass>edu.uiuc.ncsa.myproxy.oauth2.tools.OA2CopyToolVerifier</mainClass> <filename>oa2-cp-verifier.jar</filename> </configuration> <goals> <goal>one-jar</goal> </goals> </execution> </executions> </plugin> </plugins> </build> </profile> <profile> <id>copy</id> <build> <plugins> <plugin> <groupId>org.dstovall</groupId> <artifactId>onejar-maven-plugin</artifactId> <version>1.4.5</version> <executions> <execution> <configuration> <mainClass>edu.uiuc.ncsa.myproxy.oauth2.tools.OA2CopyTool</mainClass> <filename>oa2-cp.jar</filename> </configuration> <goals> <goal>one-jar</goal> </goals> </execution> </executions> </plugin> </plugins> </build> </profile> <profile> <id>monitor</id> <build> <plugins> <plugin> <groupId>org.dstovall</groupId> <artifactId>onejar-maven-plugin</artifactId> <version>1.4.5</version> <executions> <execution> <configuration> <mainClass>edu.uiuc.ncsa.myproxy.oa4mp.server.Monitor</mainClass> <filename>oa2-monitor.jar</filename> </configuration> <goals> <goal>one-jar</goal> </goals> </execution> </executions> </plugin> </plugins> </build> </profile> </profiles> <pluginRepositories> <pluginRepository> <id>onejar-maven-plugin.googlecode.com</id> <url>http://onejar-maven-plugin.googlecode.com/svn/mavenrepo</url> </pluginRepository> </pluginRepositories> </project>