jfunk-samples
Used in:
components
- OverviewOverview
- VersionsVersions
- DependentsDependents
- DependenciesDependencies
<dependency> <groupId>com.mgmtp.jfunk</groupId> <artifactId>jfunk-samples</artifactId> <version>3.2.0-rc1</version> </dependency>
<?xml version="1.0" encoding="UTF-8"?> <!-- Copyright (c) 2015 mgm technology partners GmbH Licensed 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/maven-v4_0_0.xsd"> <modelVersion>4.0.0</modelVersion> <name>jFunk Samples</name> <parent> <groupId>com.mgmtp.jfunk</groupId> <artifactId>jfunk</artifactId> <version>3.2.0-rc1</version> </parent> <artifactId>jfunk-samples</artifactId> <packaging>jar</packaging> <build> <resources> <resource> <directory>${basedir}/src/main/resources</directory> </resource> <resource> <targetPath>${basedir}</targetPath> <filtering>true</filtering> <directory>${basedir}/src/main/scripts</directory> <includes> <include>setenv.bat</include> <include>setenv.sh</include> </includes> </resource> </resources> <plugins> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-clean-plugin</artifactId> <executions> <execution> <id>clean-dependencies</id> <phase>install</phase> <goals> <goal>clean</goal> </goals> <configuration> <excludeDefaultDirectories>true</excludeDefaultDirectories> <filesets> <fileset> <directory>${basedir}/lib</directory> <includes> <include>*.jar</include> </includes> </fileset> </filesets> </configuration> </execution> </executions> </plugin> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-dependency-plugin</artifactId> <version>2.1</version><!--$NO-MVN-MAN-VER$ --> <executions> <execution> <id>copy-deps</id> <phase>install</phase> <goals> <goal>copy-dependencies</goal> </goals> <configuration> <outputDirectory>${basedir}/lib</outputDirectory> </configuration> </execution> </executions> </plugin> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-surefire-plugin</artifactId> <configuration> <skipTests>true</skipTests> </configuration> </plugin> </plugins> </build> <dependencies> <dependency> <groupId>com.mgmtp.jfunk</groupId> <artifactId>jfunk-core</artifactId> </dependency> <dependency> <groupId>com.mgmtp.jfunk</groupId> <artifactId>jfunk-common</artifactId> </dependency> <dependency> <groupId>com.mgmtp.jfunk</groupId> <artifactId>jfunk-data</artifactId> </dependency> <dependency> <groupId>com.mgmtp.jfunk</groupId> <artifactId>jfunk-data-generator</artifactId> </dependency> <dependency> <groupId>com.mgmtp.jfunk</groupId> <artifactId>jfunk-web</artifactId> </dependency> <dependency> <groupId>com.mgmtp.jfunk</groupId> <artifactId>jfunk-unit</artifactId> </dependency> <dependency> <groupId>org.slf4j</groupId> <artifactId>jcl-over-slf4j</artifactId> </dependency> <dependency> <groupId>ch.qos.logback</groupId> <artifactId>logback-classic</artifactId> <scope>runtime</scope> </dependency> <dependency> <groupId>junit</groupId> <artifactId>junit</artifactId> <scope>test</scope> </dependency> </dependencies> <profiles> <profile> <id>dist</id> <build> <plugins> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-dependency-plugin</artifactId> <executions> <execution> <id>dist_unpack_sources</id> <phase>package</phase> <goals> <goal>unpack</goal> </goals> <configuration> <artifactItems> <artifactItem> <groupId>${project.groupId}</groupId> <artifactId>jfunk-core</artifactId> <version>${project.version}</version> <type>jar</type> <classifier>sources</classifier> </artifactItem> <artifactItem> <groupId>${project.groupId}</groupId> <artifactId>jfunk-common</artifactId> <version>${project.version}</version> <type>jar</type> <classifier>sources</classifier> </artifactItem> <artifactItem> <groupId>${project.groupId}</groupId> <artifactId>jfunk-data</artifactId> <version>${project.version}</version> <type>jar</type> <classifier>sources</classifier> </artifactItem> <artifactItem> <groupId>${project.groupId}</groupId> <artifactId>jfunk-data-generator</artifactId> <version>${project.version}</version> <type>jar</type> <classifier>sources</classifier> </artifactItem> <artifactItem> <groupId>${project.groupId}</groupId> <artifactId>jfunk-data-excel</artifactId> <version>${project.version}</version> <type>jar</type> <classifier>sources</classifier> </artifactItem> <artifactItem> <groupId>${project.groupId}</groupId> <artifactId>jfunk-web</artifactId> <version>${project.version}</version> <type>jar</type> <classifier>sources</classifier> </artifactItem> </artifactItems> <outputDirectory>${project.build.directory/src}</outputDirectory> <overWriteReleases>true</overWriteReleases> <overWriteSnapshots>true</overWriteSnapshots> <excludes>**/META-INF/**</excludes> </configuration> </execution> </executions> </plugin> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-assembly-plugin</artifactId> <version>2.2.1</version> <executions> <execution> <id>assembly_dist</id> <goals> <goal>single</goal> </goals> <phase>package</phase> <configuration> <descriptors> <descriptor>src/main/assembly/dist.xml</descriptor> </descriptors> </configuration> </execution> </executions> </plugin> </plugins> </build> </profile> </profiles> </project>