petals-esb-minimal-zip
Used in:
components
- OverviewOverview
- VersionsVersions
- DependentsDependents
- DependenciesDependencies
<dependency> <groupId>org.ow2.petals</groupId> <artifactId>petals-esb-minimal-zip</artifactId> <version>5.3.0</version> </dependency>
<?xml version="1.0" encoding="UTF-8"?> <!-- Copyright (c) 2015-2023 Linagora This program/library is free software: you can redistribute it and/or modify it under the terms of the GNU Lesser General Public License as published by the Free Software Foundation, either version 2.1 of the License, or (at your option) any later version. This program/library is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU Lesser General Public License for more details. You should have received a copy of the GNU Lesser General Public License along with this program/library; If not, see http://www.gnu.org/licenses/ for the GNU Lesser General Public License version 2.1. --> <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.ow2.petals</groupId> <artifactId>petals-container-parent</artifactId> <relativePath>../parent/pom.xml</relativePath> <version>4.4.0</version> </parent> <groupId>org.ow2.petals</groupId> <artifactId>petals-esb-minimal-zip</artifactId> <packaging>pom</packaging> <version>5.3.0</version> <name>Petals ESB - Default minimal container - Public ZIP archive</name> <dependencies> <dependency> <groupId>org.ow2.petals</groupId> <artifactId>petals-bootstrap-launcher</artifactId> <version>1.2.0</version> <!-- optional so that depending from the zip does not bring all the dependencies --> <optional>true</optional> </dependency> <dependency> <groupId>org.ow2.petals</groupId> <artifactId>petals-launcher-default</artifactId> <version>2.4.0</version> <!-- optional so that depending from the zip does not bring all the dependencies --> <optional>true</optional> </dependency> <dependency> <groupId>org.ow2.petals</groupId> <artifactId>petals-microkernel</artifactId> <version>4.3.0</version> <!-- optional so that depending from the zip does not bring all the dependencies --> <optional>true</optional> </dependency> <dependency> <groupId>org.ow2.petals</groupId> <artifactId>petals-microkernel-junit</artifactId> <version>1.2.0</version> <scope>test</scope> </dependency> <dependency> <groupId>commons-io</groupId> <artifactId>commons-io</artifactId> <!-- commons-io:commons-io is required for test purpose in this project and it is required by Petals µKernel. If we use a scope set to test, it will not be packaged. That's why it scope is 'compile' --> <scope>compile</scope> </dependency> </dependencies> <build> <plugins> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-checkstyle-plugin</artifactId> <executions> <execution> <id>check-header-assembly-files</id> <configuration> <!-- We skip checking of file header of template files, we check only the assembly file --> <includes>/*</includes> </configuration> </execution> </executions> </plugin> <plugin> <groupId>org.codehaus.mojo</groupId> <artifactId>build-helper-maven-plugin</artifactId> <executions> <execution> <id>add-it-test-source</id> <phase>process-resources</phase> <goals> <goal>add-test-source</goal> </goals> <configuration> <sources> <source>src/it/java</source> </sources> </configuration> </execution> </executions> </plugin> <plugin> <groupId>org.codehaus.mojo</groupId> <artifactId>license-maven-plugin</artifactId> </plugin> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-antrun-plugin</artifactId> <executions> <execution> <id>generate-version-file</id> <phase>prepare-package</phase> <goals> <goal>run</goal> </goals> <configuration> <target> <echo file="${project.build.directory}/petals-esb-container.version" message="${project.version}" /> </target> </configuration> </execution> </executions> </plugin> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-assembly-plugin</artifactId> <executions> <execution> <id>generate-assembly</id> <configuration> <appendAssemblyId>false</appendAssemblyId> <descriptors> <descriptor>src/main/assembly/bin.xml</descriptor> </descriptors> </configuration> <phase>package</phase> <goals> <goal>single</goal> </goals> </execution> </executions> </plugin> <!-- Plugin to apply for unit tests and integration tests--> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-compiler-plugin</artifactId> <executions> <execution> <phase>test-compile</phase> <goals> <goal>testCompile</goal> </goals> </execution> </executions> </plugin> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-failsafe-plugin</artifactId> <configuration> <systemPropertyVariables> <archive-base-directory>${project.build.directory}/${project.artifactId}-${project.version}</archive-base-directory> </systemPropertyVariables> </configuration> </plugin> <plugin> <groupId>org.codehaus.mojo</groupId> <artifactId>exec-maven-plugin</artifactId> <configuration> <executable>${project.build.directory}/${project.build.finalName}/bin/petals-esb.sh</executable> <workingDirectory>${project.build.directory}/${project.build.finalName}/bin</workingDirectory> </configuration> </plugin> </plugins> </build> <scm> <connection>scm:svn:https://svn.petalslink.org/svnroot/tags/petals-esb-minimal-zip-5.3.0</connection> <developerConnection>scm:svn:https://svn.petalslink.org/svnroot/tags/petals-esb-minimal-zip-5.3.0</developerConnection> </scm> </project>