123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225 |
- <?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">
- <modelVersion>4.0.0</modelVersion>
- <groupId>no.steria.osgi.jsr330activator</groupId>
- <artifactId>jsr330activator</artifactId>
- <version>1.1.1-SNAPSHOT</version>
- <packaging>pom</packaging>
- <name>jsr330activator</name>
- <description>An OSGi bundle activator implementation that will scan the bundle for JSR330 Provider interface implementations instantiate the providers, and register the provided services with OSGi.</description>
- <licenses>
- <license>
- <name>Eclipse Public License - v 1.0</name>
- <url>LICENSE</url>
- </license>
- </licenses>
- <developers>
- <developer>
- <name>Steinar Bang</name>
- <email>steb@soprasteria.com</email>
- <organization>steria</organization>
- <organizationUrl>https://github.com/sbang</organizationUrl>
- </developer>
- </developers>
- <properties>
- <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
- <maven.bundle.plugin.version>2.5.3</maven.bundle.plugin.version>
- </properties>
- <dependencies>
- <dependency>
- <groupId>junit</groupId>
- <artifactId>junit</artifactId>
- <version>4.13.1</version>
- </dependency>
- </dependencies>
- <modules>
- <module>jsr330activator.gogoshell</module>
- <module>jsr330activator.implementation</module>
- <module>jsr330activator.mocks</module>
- <module>jsr330activator.testbundles</module>
- <module>jsr330activator.tests</module>
- </modules>
- <build>
- <plugins>
- <plugin>
- <groupId>org.apache.maven.plugins</groupId>
- <artifactId>maven-compiler-plugin</artifactId>
- <version>3.5.1</version>
- <configuration>
- <source>1.8</source>
- <target>1.8</target>
- </configuration>
- </plugin>
- <plugin>
- <groupId>org.apache.maven.plugins</groupId>
- <artifactId>maven-source-plugin</artifactId>
- <version>2.4</version>
- <executions>
- <execution>
- <id>attach-sources</id>
- <goals>
- <goal>jar</goal>
- </goals>
- </execution>
- </executions>
- </plugin>
- <plugin>
- <groupId>org.apache.maven.plugins</groupId>
- <artifactId>maven-javadoc-plugin</artifactId>
- <version>2.10.2</version>
- <configuration>
- <show>private</show>
- </configuration>
- <executions>
- <execution>
- <id>attach-javadocs</id>
- <goals>
- <goal>jar</goal>
- </goals>
- <configuration>
- <failOnError>false</failOnError>
- </configuration>
- </execution>
- </executions>
- </plugin>
- <plugin>
- <groupId>org.codehaus.mojo</groupId>
- <artifactId>cobertura-maven-plugin</artifactId>
- <version>2.7</version>
- <configuration>
- <outputDirectory>${basedir}/target</outputDirectory>
- <formats>
- <format>html</format>
- <format>xml</format>
- </formats>
- <instrumentation>
- <excludes>
- <exclude>no/steria/osgi/mocks/**/*.class</exclude>
- <exclude>no/steria/osgi/jsr330activator/testbundle1/**/*.class</exclude>
- <exclude>no/steria/osgi/jsr330activator/testbundle2/**/*.class</exclude>
- <exclude>no/steria/osgi/jsr330activator/testbundle3/**/*.class</exclude>
- <exclude>no/steria/osgi/jsr330activator/testbundle4/**/*.class</exclude>
- <exclude>no/steria/osgi/jsr330activator/testbundle5/**/*.class</exclude>
- <exclude>no/steria/osgi/jsr330activator/testbundle6/**/*.class</exclude>
- <exclude>no/steria/osgi/jsr330activator/testbundle7/**/*.class</exclude>
- <exclude>no/steria/osgi/jsr330activator/testbundle8/**/*.class</exclude>
- <exclude>no/steria/osgi/jsr330activator/testbundle9/**/*.class</exclude>
- </excludes>
- </instrumentation>
- <aggregate>true</aggregate>
- </configuration>
- </plugin>
- <plugin>
- <groupId>org.eluder.coveralls</groupId>
- <artifactId>coveralls-maven-plugin</artifactId>
- <version>3.1.0</version>
- <configuration>
- <coberturaReports>
- <coberturaReport>${basedir}/target/coverage.xml</coberturaReport>
- </coberturaReports>
- </configuration>
- </plugin>
- <plugin>
- <groupId>org.apache.maven.plugins</groupId>
- <artifactId>maven-release-plugin</artifactId>
- <version>2.5.3</version>
- <configuration>
- <releaseProfiles>release-sign-artifact</releaseProfiles>
- <preparationGoals>clean install</preparationGoals>
- </configuration>
- </plugin>
- <plugin>
- <groupId>org.sonatype.plugins</groupId>
- <artifactId>nexus-staging-maven-plugin</artifactId>
- <version>1.6.8</version>
- <extensions>true</extensions>
- <configuration>
- <serverId>ossrh</serverId>
- <nexusUrl>https://oss.sonatype.org/</nexusUrl>
- <autoReleaseAfterClose>true</autoReleaseAfterClose>
- </configuration>
- </plugin>
- </plugins>
- <pluginManagement>
- <plugins>
- <plugin>
- <groupId>org.apache.felix</groupId>
- <artifactId>maven-bundle-plugin</artifactId>
- <version>${maven.bundle.plugin.version}</version>
- </plugin>
- </plugins>
- </pluginManagement>
- </build>
- <scm>
- <url>https://github.com/sbang/jsr330activator</url>
- <connection>scm:git:https://github.com/sbang/jsr330activator.git</connection>
- <tag>HEAD</tag>
- </scm>
- <issueManagement>
- <url>https://github.com/sbang/jsr330activator/issues</url>
- <system>Github issue tracker</system>
- </issueManagement>
- <ciManagement>
- <url>https://travis-ci.org/sbang/jsr330activator</url>
- <system>travis-ci</system>
- </ciManagement>
- <distributionManagement>
- <snapshotRepository>
- <id>ossrh</id>
- <url>https://oss.sonatype.org/content/repositories/snapshots</url>
- </snapshotRepository>
- <repository>
- <id>ossrh</id>
- <url>https://oss.sonatype.org/service/local/staging/deploy/maven2/</url>
- </repository>
- </distributionManagement>
- <url>http://sbang.github.io/jsr330activator/</url>
- <profiles>
- <profile>
- <id>release-sign-artifact</id>
- <build>
- <plugins>
- <plugin>
- <groupId>org.apache.maven.plugins</groupId>
- <artifactId>maven-gpg-plugin</artifactId>
- <version>1.6</version>
- <executions>
- <execution>
- <id>sign-artifacts</id>
- <phase>verify</phase>
- <goals>
- <goal>sign</goal>
- </goals>
- <configuration>
- <gpgArguments>
- <arg>--pinentry-mode</arg>
- <arg>loopback</arg>
- </gpgArguments>
- </configuration>
- </execution>
- </executions>
- </plugin>
- </plugins>
- </build>
- </profile>
- </profiles>
- </project>
|