jdtaus-core-jomc-container
Used in:
components
- OverviewOverview
- VersionsVersions
- DependentsDependents
- DependenciesDependencies
<dependency>
<groupId>org.jdtaus.core.container</groupId>
<artifactId>jdtaus-core-jomc-container</artifactId>
<version>1.15</version>
</dependency><?xml version="1.0" encoding="UTF-8"?>
<!--
jDTAUS
Copyright (C) 2012 Christian Schulte <cs@schulte.it>
This 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 any later version.
This 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 library; if not, write to the Free Software
Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA
$JDTAUS: pom.xml 8855 2014-01-10 14:27:59Z schulte $
-->
<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">
<parent>
<artifactId>jdtaus-core</artifactId>
<groupId>org.jdtaus</groupId>
<version>1.15</version>
</parent>
<modelVersion>4.0.0</modelVersion>
<groupId>org.jdtaus.core.container</groupId>
<artifactId>jdtaus-core-jomc-container</artifactId>
<version>1.15</version>
<name>jDTAUS Core ⁑ JOMC Container</name>
<description>Container implementation backed by JOMC.</description>
<build>
<resources>
<resource>
<filtering>true</filtering>
<directory>src/main/resources</directory>
</resource>
</resources>
<pluginManagement>
<plugins>
<plugin>
<groupId>org.jomc</groupId>
<artifactId>maven-jomc-plugin</artifactId>
<executions>
<execution>
<id>default-main</id>
<goals>
<goal>write-main-resources</goal>
</goals>
</execution>
</executions>
</plugin>
</plugins>
</pluginManagement>
<plugins>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-resources-plugin</artifactId>
<executions>
<execution>
<id>default-copy-resources</id>
<phase>process-classes</phase>
<goals>
<goal>copy-resources</goal>
</goals>
<configuration>
<outputDirectory>${project.build.outputDirectory}/META-INF</outputDirectory>
<resources>
<resource>
<filtering>true</filtering>
<directory>src/main/modlet</directory>
</resource>
</resources>
</configuration>
</execution>
</executions>
</plugin>
<plugin>
<groupId>org.jomc</groupId>
<artifactId>maven-jomc-plugin</artifactId>
</plugin>
</plugins>
</build>
<dependencies>
<dependency>
<groupId>org.jdtaus.common</groupId>
<artifactId>jdtaus-core-api</artifactId>
<scope>compile</scope>
</dependency>
<dependency>
<groupId>org.jomc</groupId>
<artifactId>jomc-api</artifactId>
<scope>compile</scope>
</dependency>
<dependency>
<groupId>org.jomc</groupId>
<artifactId>jomc-spi</artifactId>
<scope>compile</scope>
</dependency>
<dependency>
<groupId>org.jomc</groupId>
<artifactId>jomc-modlet</artifactId>
<scope>compile</scope>
</dependency>
<dependency>
<groupId>org.jomc</groupId>
<artifactId>jomc-model</artifactId>
<scope>compile</scope>
</dependency>
<dependency>
<groupId>org.jdtaus.core.container</groupId>
<artifactId>jdtaus-core-client-container</artifactId>
<scope>runtime</scope>
</dependency>
<dependency>
<groupId>org.jomc</groupId>
<artifactId>jomc-ri</artifactId>
<scope>runtime</scope>
</dependency>
</dependencies>
<properties>
<jomc.templateProfile>jdtaus-java-bundles-lgpl</jomc.templateProfile>
<maven.compiler.source>1.5</maven.compiler.source>
<maven.compiler.target>1.5</maven.compiler.target>
<mojo.animal-sniffer.signature.artifactId>java15</mojo.animal-sniffer.signature.artifactId>
</properties>
</project>