console-module-jdbcconnections-server
Used in:
components
- OverviewOverview
- VersionsVersions
- DependentsDependents
- DependenciesDependencies
<dependency> <groupId>org.ow2.jonas.admin</groupId> <artifactId>console-module-jdbcconnections-server</artifactId> <version>2.0.2</version> </dependency>
<?xml version="1.0" encoding="UTF-8"?> <!-- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - JOnAS: Java(TM) Open Application Server - Copyright (C) 2009-2012 Bull S.A.S. - Contact: jonas-team@ow2.org - - 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., 59 Temple Place, Suite 330, Boston, MA 02111-1307 - USA - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - --> <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> <groupId>org.ow2.jonas.admin</groupId> <artifactId>console-module-jdbcconnections</artifactId> <version>2.0.2</version> </parent> <modelVersion>4.0.0</modelVersion> <groupId>org.ow2.jonas.admin</groupId> <artifactId>console-module-jdbcconnections-server</artifactId> <packaging>bundle</packaging> <name>JOnAS Console :: Modules :: JDBC Connections :: Server</name> <dependencies> <dependency> <groupId>org.ow2.util.log</groupId> <artifactId>log-api</artifactId> <version>${log-api.version}</version> </dependency> <dependency> <groupId>org.ow2.kerneos</groupId> <artifactId>kerneos-core-api</artifactId> <version>${kerneos.version}</version> <scope>provided</scope> </dependency> <dependency> <groupId>org.apache.felix</groupId> <artifactId>org.apache.felix.ipojo.annotations</artifactId> <version>${ipojo.version}</version> <scope>provided</scope> </dependency> <dependency> <groupId>org.ow2.jonas</groupId> <artifactId>jonas-management-extensions</artifactId> <version>${jonas.version}</version> <exclusions> <exclusion> <groupId>org.ow2.jonas</groupId> <artifactId>jonas-management-javaee</artifactId> </exclusion> <exclusion> <groupId>org.ow2.jonas</groupId> <artifactId>jonas-domain</artifactId> </exclusion> </exclusions> </dependency> </dependencies> <build> <plugins> <plugin> <artifactId>maven-dependency-plugin</artifactId> <executions> <execution> <id>copy-dependencies</id> <phase>generate-resources</phase> <goals> <goal>copy</goal> </goals> <configuration> <artifactItems> <artifactItem> <groupId>org.ow2.jonas.admin</groupId> <artifactId>console-module-jdbcconnections-client</artifactId> <version>${project.version}</version> <type>swf</type> <overWrite>true</overWrite> <destFileName>jdbc-connections.swf</destFileName> </artifactItem> </artifactItems> <outputDirectory>${project.build.directory}/resources</outputDirectory> </configuration> </execution> </executions> </plugin> <plugin> <groupId>org.apache.felix</groupId> <artifactId>maven-bundle-plugin</artifactId> <extensions>true</extensions> <configuration> <instructions> <Kerneos-Module>${project.artifactId}-${project.version}</Kerneos-Module> <Include-Resource> src/main/resources, KERNEOS=src/main/kerneos, KERNEOS=${project.build.directory}/resources </Include-Resource> </instructions> </configuration> </plugin> <plugin> <groupId>org.apache.felix</groupId> <artifactId>maven-ipojo-plugin</artifactId> </plugin> </plugins> </build> </project>