|
| 1 | +<?xml version="1.0" encoding="UTF-8"?> |
| 2 | +<project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" |
| 3 | + xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/maven-v4_0_0.xsd"> |
| 4 | + |
| 5 | + <modelVersion>4.0.0</modelVersion> |
| 6 | + |
| 7 | + <parent> |
| 8 | + <groupId>org.simplejavamail</groupId> |
| 9 | + <artifactId>karaf-module</artifactId> |
| 10 | + <version>8.0.1</version> |
| 11 | + </parent> |
| 12 | + |
| 13 | + <artifactId>simplejavamail-karaf-feature</artifactId> |
| 14 | + <packaging>feature</packaging> |
| 15 | + <name>Simple Java Mail - Karaf feature</name> |
| 16 | + <description>Feature descriptor for Apache Karaf</description> |
| 17 | + |
| 18 | + <build> |
| 19 | + <plugins> |
| 20 | + <plugin> |
| 21 | + <groupId>org.apache.karaf.tooling</groupId> |
| 22 | + <artifactId>karaf-maven-plugin</artifactId> |
| 23 | + <version>4.4.3</version> |
| 24 | + <extensions>true</extensions> |
| 25 | + <configuration> |
| 26 | + <excludedArtifactIds> |
| 27 | + <excludedArtifactId>slf4j-api</excludedArtifactId> |
| 28 | + </excludedArtifactIds> |
| 29 | + </configuration> |
| 30 | + <executions> |
| 31 | + <execution> |
| 32 | + <goals> |
| 33 | + <goal>features-generate-descriptor</goal> |
| 34 | + </goals> |
| 35 | + </execution> |
| 36 | + </executions> |
| 37 | + </plugin> |
| 38 | + </plugins> |
| 39 | + </build> |
| 40 | + |
| 41 | + <dependencies> |
| 42 | + <dependency> |
| 43 | + <groupId>org.simplejavamail</groupId> |
| 44 | + <artifactId>core-module</artifactId> |
| 45 | + <version>${project.version}</version> |
| 46 | + <exclusions> |
| 47 | + <exclusion> |
| 48 | + <groupId>org.slf4j</groupId> |
| 49 | + <artifactId>slf4j-api</artifactId> |
| 50 | + </exclusion> |
| 51 | + </exclusions> |
| 52 | + </dependency> |
| 53 | + <dependency> |
| 54 | + <groupId>org.simplejavamail</groupId> |
| 55 | + <artifactId>simple-java-mail</artifactId> |
| 56 | + <version>${project.version}</version> |
| 57 | + <exclusions> |
| 58 | + <exclusion> |
| 59 | + <groupId>org.slf4j</groupId> |
| 60 | + <artifactId>slf4j-api</artifactId> |
| 61 | + </exclusion> |
| 62 | + </exclusions> |
| 63 | + </dependency> |
| 64 | + </dependencies> |
| 65 | +</project> |
0 commit comments