| Group ID: |
org.crsh |
| Artifact ID: |
crsh.distrib |
| Version: |
1.2.9 |
| Last modified: |
30.03.2014 13:48 |
| Packaging: |
tar.gz |
| Name: |
CRaSH distrib |
| Description: |
The CRaSH distribution |
|
|
| Size: |
0.0 KB |
| Download: |
https://repo.maven.apache.org/maven2/org/crsh/crsh.distrib/1.2.9/crsh.distrib-1.2.9-spring.jar |
| POM: |
Show
hide
<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>crsh.parent</artifactId>
<groupId>org.crsh</groupId>
<version>1.2.9</version>
</parent>
<modelVersion>4.0.0</modelVersion>
<artifactId>crsh.distrib</artifactId>
<packaging>jar</packaging>
<version>1.2.9</version>
<name>CRaSH distrib</name>
<description>The CRaSH distribution</description>
<dependencies>
<!-- Standalone -->
<dependency>
<groupId>org.crsh</groupId>
<artifactId>crsh.shell.packaging</artifactId>
<type>tar.gz</type>
</dependency>
<!-- War -->
<dependency>
<groupId>org.crsh</groupId>
<artifactId>crsh.shell.packaging</artifactId>
<type>war</type>
</dependency>
<!-- GateIn war -->
<dependency>
<groupId>org.crsh</groupId>
<artifactId>crsh.jcr.exo</artifactId>
<type>war</type>
</dependency>
<!-- Spring war -->
<dependency>
<groupId>org.crsh</groupId>
<artifactId>crsh.shell.packaging</artifactId>
<type>war</type>
<classifier>spring</classifier>
</dependency>
<!-- Mule application -->
<dependency>
<groupId>org.crsh</groupId>
<artifactId>crsh.shell.packaging</artifactId>
<type>zip</type>
<classifier>mule-app</classifier>
</dependency>
<!-- Sources -->
<dependency>
<groupId>org.crsh</groupId>
<artifactId>crsh.cli</artifactId>
<classifier>sources</classifier>
</dependency>
<dependency>
<groupId>org.crsh</groupId>
<artifactId>crsh.shell.core</artifactId>
<classifier>sources</classifier>
</dependency>
<dependency>
<groupId>org.crsh</groupId>
<artifactId>crsh.shell.telnet</artifactId>
<classifier>sources</classifier>
</dependency>
<dependency>
<groupId>org.crsh</groupId>
<artifactId>crsh.shell.ssh</artifactId>
<classifier>sources</classifier>
</dependency>
<dependency>
<groupId>org.crsh</groupId>
<artifactId>crsh.shell.embed.spring</artifactId>
<classifier>sources</classifier>
</dependency>
<dependency>
<groupId>org.crsh</groupId>
<artifactId>crsh.jcr.core</artifactId>
<classifier>sources</classifier>
</dependency>
<dependency>
<groupId>org.crsh</groupId>
<artifactId>crsh.jcr.exo</artifactId>
<classifier>sources</classifier>
</dependency>
<dependency>
<groupId>org.crsh</groupId>
<artifactId>crsh.jcr.jackrabbit</artifactId>
<classifier>sources</classifier>
</dependency>
<dependency>
<groupId>org.crsh</groupId>
<artifactId>crsh.plugins.crowd</artifactId>
<classifier>sources</classifier>
</dependency>
<!-- Doc -->
<dependency>
<groupId>org.crsh</groupId>
<artifactId>crsh.doc.reference</artifactId>
<type>pdf</type>
</dependency>
<dependency>
<groupId>org.crsh</groupId>
<artifactId>crsh.doc.reference</artifactId>
<classifier>html</classifier>
<type>zip</type>
</dependency>
<dependency>
<groupId>org.crsh</groupId>
<artifactId>crsh.doc.reference</artifactId>
<classifier>javadoc</classifier>
</dependency>
<dependency>
<groupId>org.crsh</groupId>
<artifactId>crsh.doc.cookbook</artifactId>
<type>pdf</type>
</dependency>
<dependency>
<groupId>org.crsh</groupId>
<artifactId>crsh.doc.cookbook</artifactId>
<classifier>html</classifier>
<type>zip</type>
</dependency>
</dependencies>
<build>
<finalName>crash-${project.version}</finalName>
<plugins>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-assembly-plugin</artifactId>
<executions>
<execution>
<id>make-docs</id>
<phase>package</phase>
<goals>
<goal>single</goal>
</goals>
<configuration>
<descriptors>
<descriptor>src/main/assembly/docs.xml</descriptor>
</descriptors>
</configuration>
</execution>
<execution>
<id>make-war</id>
<phase>package</phase>
<goals>
<goal>single</goal>
</goals>
<configuration>
<appendAssemblyId>true</appendAssemblyId>
<descriptors>
<descriptor>src/main/assembly/war.xml</descriptor>
</descriptors>
</configuration>
</execution>
<execution>
<id>make-spring</id>
<phase>package</phase>
<goals>
<goal>single</goal>
</goals>
<configuration>
<descriptors>
<descriptor>src/main/assembly/spring.xml</descriptor>
</descriptors>
</configuration>
</execution>
<execution>
<id>make-mule-app</id>
<phase>package</phase>
<goals>
<goal>single</goal>
</goals>
<configuration>
<descriptors>
<descriptor>src/main/assembly/mule-app.xml</descriptor>
</descriptors>
</configuration>
</execution>
<execution>
<id>make-gatein</id>
<phase>package</phase>
<goals>
<goal>single</goal>
</goals>
<configuration>
<descriptors>
<descriptor>src/main/assembly/gatein.xml</descriptor>
</descriptors>
</configuration>
</execution>
</executions>
</plugin>
</plugins>
</build>
<profiles>
<profile>
<id>upload</id>
<build>
<plugins>
<plugin>
<groupId>com.googlecode.maven-gcu-plugin</groupId>
<artifactId>maven-gcu-plugin</artifactId>
<executions>
<execution>
<phase>install</phase>
<goals>
<goal>upload</goal>
</goals>
<configuration>
<serverId>googlecode</serverId>
<failsOnError>true</failsOnError>
<projectName>crsh</projectName>
<uploads>
<upload>
<file>${project.build.directory}/crash-${project.version}-gatein.tar.gz</file>
<summary>CRaSH GateIn web archive ${project.version}</summary>
<labels>
<label>GateIn</label>
</labels>
</upload>
<upload>
<file>${project.build.directory}/crash-${project.version}-mule-app.tar.gz</file>
<summary>CRaSH Mule application ${project.version}</summary>
<labels>
<label>Mule</label>
</labels>
</upload>
<upload>
<file>${project.build.directory}/crash-${project.version}-spring.tar.gz</file>
<summary>CRaSH Spring web archive ${project.version}</summary>
<labels>
<label>Spring</label>
</labels>
</upload>
<upload>
<file>${project.build.directory}/crash-${project.version}-war.tar.gz</file>
<summary>CRaSH Standalone web archive ${project.version}</summary>
<labels>
<label>Servlet</label>
</labels>
</upload>
<upload>
<file>${project.build.directory}/crash-${project.version}-docs.tar.gz</file>
<summary>CRaSH Documentation and sources bundle ${project.version}</summary>
<labels>
<label>Documentation</label>
</labels>
</upload>
<upload>
<file>${project.build.directory}/crash-${project.version}.tar.gz</file>
<summary>CRaSH Standalone ${project.version}</summary>
<labels>
<label>Standalone</label>
</labels>
</upload>
</uploads>
</configuration>
</execution>
</executions>
</plugin>
</plugins>
</build>
</profile>
</profiles>
</project>
|
| Maven: |
<dependency>
<groupId>org.crsh</groupId>
<artifactId>crsh.distrib</artifactId>
<version>1.2.9</version>
<classifier>spring</classifier>
</dependency>
|
| Gradle: |
org.crsh:crsh.distrib:1.2.9:spring |
| Dependencies: |
|
| Dependency Graph: |
Show
Less
More
|