tracee-examples
Used in:
components
- OverviewOverview
- VersionsVersions
- DependentsDependents
- DependenciesDependencies
<dependency>
<groupId>io.tracee.examples</groupId>
<artifactId>tracee-examples</artifactId>
<version>0.3.0</version>
</dependency><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> <artifactId>tracee-examples</artifactId> <groupId>io.tracee.examples</groupId> <packaging>pom</packaging> <modules> <module>jaxws</module> <module>webapp</module> <module>jaxrs2</module> <module>ejb</module> <module>jms</module> <module>springmvc</module> <module>ear</module> </modules> <parent> <groupId>io.tracee</groupId> <artifactId>tracee-parent</artifactId> <version>0.3.0</version> </parent> <name>tracee-examples</name> <build> <plugins> <!-- Don't release the examples to the maven central - we don't want to dirt the central! --> <plugin> <artifactId>maven-release-plugin</artifactId> <configuration> <goals>install</goals> </configuration> </plugin> <!-- Examples are not so restrictive like the api modules of tracee --> <plugin> <artifactId>maven-enforcer-plugin</artifactId> <executions> <execution> <id>enforce</id> <goals> <goal>enforce</goal> </goals> <configuration> <rules> <bannedDependencies> <searchTransitive>false</searchTransitive> <includes> <include>*</include> </includes> </bannedDependencies> </rules> </configuration> </execution> </executions> </plugin> <plugin> <groupId>org.codehaus.mojo</groupId> <artifactId>cobertura-maven-plugin</artifactId> <configuration> <skip>true</skip> </configuration> </plugin> </plugins> </build> <dependencies> </dependencies> </project>