gems.maven-tools-1.2.1.spec.gemspec_with_extras.pom.xml Maven / Gradle / Ivy
The newest version!
<?xml version="1.0" encoding="UTF-8"?> <!-- Copyright (c) 2012 to original author or authors All rights reserved. This program and the accompanying materials are made available under the terms of the Eclipse Public License v1.0 which accompanies this distribution, and is available at http://www.eclipse.org/legal/epl-v10.html --> <project xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd" xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"> <modelVersion>4.0.0</modelVersion> <groupId>rubygems</groupId> <artifactId>bouncy-castle-java</artifactId> <version>1.5.0149</version> <packaging>gem</packaging> <name>Gem redistribution of Bouncy Castle jars</name> <url>http://github.com/jruby/jruby/tree/master/gems/bouncy-castle-java/</url> <description>Gem redistribution of "Legion of the Bouncy Castle Java cryptography APIs" jars at http://www.bouncycastle.org/java.html</description> <developers> <developer> <name>Hiroshi Nakamura</name> <email>[email protected]</email> </developer> </developers> <scm> <connection>https://github.com/jruby/jruby/tree/master/gems/bouncy-castle-java.git</connection> <url>http://github.com/jruby/jruby/tree/master/gems/bouncy-castle-java/</url> </scm> <properties> <project.build.sourceEncoding>utf-8</project.build.sourceEncoding> <jruby.plugins.version>3.0.0</jruby.plugins.version> <mavengem.wagon.version>2.0.0</mavengem.wagon.version> <tesla.dump.pom>pom.xml</tesla.dump.pom> <tesla.dump.readonly>true</tesla.dump.readonly> </properties> <dependencies> <dependency> <groupId>org.bouncycastle</groupId> <artifactId>bcpkix-jdk15on</artifactId> <version>1.49</version> </dependency> <dependency> <groupId>org.bouncycastle</groupId> <artifactId>bcprov-jdk15on</artifactId> <version>1.49</version> </dependency> </dependencies> <repositories> <repository> <id>mavengems</id> <url>mavengem:https://rubygems.org</url> </repository> </repositories> <build> <extensions> <extension> <groupId>org.jruby.maven</groupId> <artifactId>mavengem-wagon</artifactId> <version>${mavengem.wagon.version}</version> </extension> <extension> <groupId>org.jruby.maven</groupId> <artifactId>gem-extension</artifactId> <version>${jruby.plugins.version}</version> </extension> </extensions> <resources> <resource> <targetPath>${basedir}/lib</targetPath> <directory>../../lib/ruby/shared/</directory> <includes> <include>bouncy-castle-java.rb</include> </includes> </resource> </resources> <directory>${basedir}/pkg</directory> <plugins> <plugin> <artifactId>maven-dependency-plugin</artifactId> <executions> <execution> <phase>generate-test-resources</phase> <goals> <goal>copy-dependencies</goal> </goals> <configuration> <outputDirectory>lib</outputDirectory> <useRepositoryLayout>true</useRepositoryLayout> </configuration> </execution> </executions> </plugin> <plugin> <groupId>org.jruby.maven</groupId> <artifactId>gem-maven-plugin</artifactId> <version>${jruby.plugins.version}</version> <configuration> <gemspec>bouncy-castle-java.gemspec</gemspec> <includeDependencies>true</includeDependencies> <useRepositoryLayout>true</useRepositoryLayout> </configuration> </plugin> <plugin> <artifactId>maven-clean-plugin</artifactId> <version>2.5</version> <executions> <execution> <id>clean-lib</id> <phase>clean</phase> <goals> <goal>clean</goal> </goals> <configuration> <filesets> <fileset> <directory>${basedir}/lib</directory> </fileset> </filesets> <failOnError>false</failOnError> </configuration> </execution> </executions> </plugin> </plugins> </build> </project>