| <?xml version="1.0" encoding="UTF-8"?> |
| <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"> |
| |
| <!-- |
| |
| Licensed to the Apache Software Foundation (ASF) under one or more |
| contributor license agreements. See the NOTICE file distributed with |
| this work for additional information regarding copyright ownership. |
| The ASF licenses this file to You 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. |
| --> |
| |
| <modelVersion>4.0.0</modelVersion> |
| |
| <parent> |
| <groupId>org.apache.servicemix</groupId> |
| <artifactId>binding-components</artifactId> |
| <version>2013.02-SNAPSHOT</version> |
| </parent> |
| |
| <groupId>org.apache.servicemix</groupId> |
| <artifactId>servicemix-snmp</artifactId> |
| <packaging>jbi-component</packaging> |
| <name>Apache ServiceMix :: Components :: SNMP Binding Component</name> |
| <description> |
| Provides support for receiving SNMP events or traps via the enterprise service bus by using the SNMP4J library. |
| </description> |
| |
| <scm> |
| <connection>scm:svn:http://svn.apache.org/repos/asf/servicemix/components/bindings/servicemix-snmp/trunk</connection> |
| <developerConnection>scm:svn:https://svn.apache.org/repos/asf/servicemix/components/bindings/servicemix-snmp/trunk</developerConnection> |
| <url>http://svn.apache.org/viewcvs.cgi/servicemix/components/bindings/servicemix-snmp/trunk</url> |
| </scm> |
| |
| <properties> |
| <snmp4j.version>1.8.1</snmp4j.version> |
| |
| <servicemix.osgi.import> |
| !org.apache.servicemix.snmp*, |
| !META-INF.services.org.apache.xbean.spring.http.servicemix.apache.org.snmp, |
| org.apache.servicemix.common, |
| org.apache.servicemix.common.osgi, |
| org.apache.servicemix.executors.impl, |
| org.apache.xbean.spring.context.v2, |
| org.springframework.beans.factory.xml, |
| sun.misc;resolution:=optional, |
| * |
| </servicemix.osgi.import> |
| <servicemix.osgi.export> |
| org.apache.servicemix.snmp*;version=${project.version}, |
| META-INF.services.org.apache.xbean.spring.http.servicemix.apache.org.snmp |
| </servicemix.osgi.export> |
| </properties> |
| |
| <dependencies> |
| <dependency> |
| <groupId>org.apache.geronimo.specs</groupId> |
| <artifactId>geronimo-jta_1.1_spec</artifactId> |
| </dependency> |
| <dependency> |
| <groupId>org.apache.servicemix</groupId> |
| <artifactId>servicemix-shared</artifactId> |
| </dependency> |
| <dependency> |
| <groupId>org.snmp4j</groupId> |
| <artifactId>snmp4j</artifactId> |
| <version>${snmp4j.version}</version> |
| </dependency> |
| |
| <!-- provided --> |
| <dependency> |
| <groupId>org.apache.servicemix.specs</groupId> |
| <artifactId>org.apache.servicemix.specs.jbi-api-1.0</artifactId> |
| <scope>provided</scope> |
| </dependency> |
| |
| <!-- test --> |
| <dependency> |
| <groupId>junit</groupId> |
| <artifactId>junit</artifactId> |
| <scope>test</scope> |
| </dependency> |
| <dependency> |
| <groupId>org.apache.servicemix</groupId> |
| <artifactId>servicemix-core</artifactId> |
| <scope>test</scope> |
| <exclusions> |
| <exclusion> |
| <groupId>org.springframework</groupId> |
| <artifactId>spring-jmx</artifactId> |
| </exclusion> |
| </exclusions> |
| </dependency> |
| |
| |
| <!-- documentation --> |
| <dependency> |
| <groupId>org.apache.servicemix</groupId> |
| <artifactId>servicemix-common</artifactId> |
| <classifier>sources</classifier> |
| </dependency> |
| </dependencies> |
| |
| <build> |
| <resources> |
| <resource> |
| <directory>src/main/resources</directory> |
| <includes> |
| <include>**/*</include> |
| </includes> |
| </resource> |
| <resource> |
| <directory>target/generated</directory> |
| <includes> |
| <include>**/*</include> |
| </includes> |
| </resource> |
| </resources> |
| <testResources> |
| <testResource> |
| <directory>src/test/resources</directory> |
| <includes> |
| <include>**/*.properties</include> |
| <include>**/*.x*</include> |
| <include>**/*.wsdl</include> |
| <include>**/*.jks</include> |
| <include>**/*.zip</include> |
| <include>**/*.txt</include> |
| <include>**/*.csv</include> |
| <include>**/*.png</include> |
| </includes> |
| </testResource> |
| <testResource> |
| <directory>src/test/java</directory> |
| <includes> |
| <include>**/*.jar</include> |
| <include>**/*.zip</include> |
| </includes> |
| </testResource> |
| </testResources> |
| <plugins> |
| <plugin> |
| <groupId>org.apache.servicemix.tooling</groupId> |
| <artifactId>jbi-maven-plugin</artifactId> |
| <extensions>true</extensions> |
| <configuration> |
| <type>binding-component</type> |
| <component>org.apache.servicemix.snmp.SnmpComponent</component> |
| </configuration> |
| </plugin> |
| <plugin> |
| <groupId>org.apache.xbean</groupId> |
| <artifactId>maven-xbean-plugin</artifactId> |
| <executions> |
| <execution> |
| <goals> |
| <goal>mapping</goal> |
| </goals> |
| <configuration> |
| <namespace>http://servicemix.apache.org/snmp/1.0</namespace> |
| </configuration> |
| </execution> |
| </executions> |
| </plugin> |
| <plugin> |
| <groupId>org.apache.maven.plugins</groupId> |
| <artifactId>maven-surefire-plugin</artifactId> |
| <configuration> |
| <forkMode>always</forkMode> |
| </configuration> |
| </plugin> |
| </plugins> |
| </build> |
| </project> |