com.github.jponge.lzma-java
Used in:
components
- OverviewOverview
- VersionsVersions
- DependentsDependents
- DependenciesDependencies
<dependency>
<groupId>hu.blackbelt.bundles.lzma-java</groupId>
<artifactId>com.github.jponge.lzma-java</artifactId>
<version>1.3_1</version>
</dependency><?xml version="1.0" encoding="ISO-8859-1"?>
<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">
<modelVersion>4.0.0</modelVersion>
<version>1.3_1</version>
<groupId>hu.blackbelt.bundles.lzma-java</groupId>
<name>lzma-java</name>
<artifactId>com.github.jponge.lzma-java</artifactId>
<packaging>bundle</packaging>
<description>LZMA library for Java</description>
<url>http://github.com/BlackBeltTechnology/osgi-repackaged-bundles</url>
<issueManagement>
<url>https://github.com/BlackBeltTechnology/osgi-repackaged-bundles</url>
<system>GitHub Issues</system>
</issueManagement>
<scm>
<connection>scm:git:git://github.com/BlackBeltTechnology/osgi-repackaged-bundles.git</connection>
<developerConnection>scm:git:ssh://${git.username}@github.com:BlackBeltTechnology/osgi-repackaged-bundles.git</developerConnection>
<url>http://github.com/BlackBeltTechnology/osgi-repackaged-bundles</url>
<tag>HEAD</tag>
</scm>
<developers>
<developer>
<id>robson</id>
<name>Robert Csakany</name>
<email>robert.csakany@blackbelt.hu</email>
<url>https://github.com/robertcsakany</url>
<organization>BlackBelt Technology</organization>
<organizationUrl>http://www.blackbelt.hu</organizationUrl>
</developer>
</developers>
<licenses>
<license>
<name>The Apache Software License, Version 2.0</name>
<url>http://www.apache.org/licenses/LICENSE-2.0.txt</url>
<distribution>repo</distribution>
</license>
</licenses>
<profiles>
<profile>
<id>sign-artifacts</id>
<build>
<plugins>
<plugin>
<groupId>org.simplify4u.plugins</groupId>
<artifactId>sign-maven-plugin</artifactId>
<version>1.0.1</version>
<executions>
<execution>
<goals>
<goal>sign</goal>
</goals>
</execution>
</executions>
</plugin>
</plugins>
</build>
</profile>
<profile>
<id>release-judong</id>
<distributionManagement>
<snapshotRepository>
<id>judong-nexus-distribution</id>
<!--suppress UnresolvedMavenProperty -->
<url>https://nexus.judo.technology/repository/maven-judong-snapshots/</url>
</snapshotRepository>
<repository>
<id>judong-nexus-distribution</id>
<!--suppress UnresolvedMavenProperty -->
<url>https://nexus.judo.technology/repository/maven-judong-snapshots/</url>
</repository>
</distributionManagement>
</profile>
<profile>
<id>release-central</id>
<build>
<plugins>
<plugin>
<groupId>org.sonatype.plugins</groupId>
<artifactId>nexus-staging-maven-plugin</artifactId>
<version>1.7.0</version>
<extensions>true</extensions>
<configuration>
<serverId>ossrh</serverId>
<nexusUrl>https://ossrh-staging-api.central.sonatype.com/</nexusUrl>
<autoReleaseAfterClose>true</autoReleaseAfterClose>
<stagingProgressTimeoutMinutes>15</stagingProgressTimeoutMinutes>
</configuration>
</plugin>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-source-plugin</artifactId>
<version>2.2.1</version>
<executions>
<execution>
<id>attach-sources</id>
<goals>
<goal>jar-no-fork</goal>
</goals>
</execution>
</executions>
</plugin>
</plugins>
</build>
<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>
</profile>
</profiles>
<build>
<plugins>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-deploy-plugin</artifactId>
<version>2.8.2</version>
</plugin>
<plugin>
<groupId>org.apache.felix</groupId>
<artifactId>maven-bundle-plugin</artifactId>
<version>6.0.0</version>
<extensions>true</extensions>
<configuration>
<instructions>
<Export-Package>
lzma*;version="1.3",
</Export-Package>
<Import-Package>
*
</Import-Package>
<!-- bundle supplied resource prefixes -->
<Include-Resource>{maven-resources}</Include-Resource>
<!-- Do not inline jars, include as jar files -->
<!-- There are config files with same name will be overwritten -->
<Embed-Dependency>*;scope=compile;inline=false</Embed-Dependency>
</instructions>
</configuration>
</plugin>
</plugins>
</build>
<dependencies>
<dependency>
<groupId>com.github.jponge</groupId>
<artifactId>lzma-java</artifactId>
<version>1.3</version>
</dependency>
</dependencies>
</project>