jbundle-artifacts
Used in:
components
- OverviewOverview
- VersionsVersions
- DependentsDependents
- DependenciesDependencies
<dependency>
<groupId>org.jbundle.config</groupId>
<artifactId>jbundle-artifacts</artifactId>
<version>1.4.4</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/maven-v4_0_0.xsd">
<modelVersion>4.0.0</modelVersion>
<parent>
<groupId>org.jbundle.config.web</groupId>
<artifactId>jbundle-artifacts-reactor</artifactId>
<version>1.4.4</version>
</parent>
<groupId>org.jbundle.config</groupId>
<artifactId>jbundle-artifacts</artifactId>
<version>1.4.4</version>
<packaging>pom</packaging>
<name>jbundle-artifacts - scripts etc.</name>
<properties>
<resourceLocation>src/main/resources/org/jbundle/res</resourceLocation>
</properties>
<build>
<resources>
<resource>
<directory>src/main/resources</directory>
<filtering>true</filtering>
</resource>
</resources>
<plugins>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-resources-plugin</artifactId>
<executions>
<execution>
<id>filter</id>
<phase>generate-resources</phase>
<goals>
<goal>resources</goal>
</goals>
</execution>
</executions>
</plugin>
<plugin>
<groupId>org.codehaus.mojo</groupId>
<artifactId>build-helper-maven-plugin</artifactId>
<executions>
<execution>
<id>attach-artifacts</id>
<phase>package</phase>
<goals>
<goal>attach-artifact</goal>
</goals>
<configuration>
<artifacts>
<artifact>
<file>target/classes/dev/setup.shell</file>
<type>shell</type>
<classifier>setup</classifier>
</artifact>
<artifact>
<file>target/classes/dev/demo.shell</file>
<type>shell</type>
<classifier>demo</classifier>
</artifact>
</artifacts>
</configuration>
</execution>
</executions>
</plugin>
</plugins>
</build>
</project>