jsampler-fantasia-3rd-party-libs
Used in:
components
- OverviewOverview
- VersionsVersions
- DependentsDependents
- DependenciesDependencies
<dependency> <groupId>com.grigoriliev.jsampler</groupId> <artifactId>jsampler-fantasia-3rd-party-libs</artifactId> <version>0.9.7</version> </dependency>
<?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/maven-v4_0_0.xsd"> <modelVersion>4.0.0</modelVersion> <groupId>com.grigoriliev.jsampler</groupId> <artifactId>jsampler-fantasia-3rd-party-libs</artifactId> <name>${project.groupId}:${project.artifactId}</name> <version>0.9.7</version> <description>Provide some third party libraries that are unavailable as maven dependencies and/or are not available as modular libraries.</description> <url>https://github.com/grigoriliev/jsampler-fantasia-3rd-party-libs</url> <developers> <developer> <name>Grigor Iliev</name> <email>grigor@grigoriliev.com</email> <organizationUrl>https://www.grigoriliev.com</organizationUrl> </developer> </developers> <licenses> <license> <name>The 3-Clause BSD License</name> <url>https://opensource.org/license/bsd-3-clause/</url> </license> <license> <name>GNU Lesser General Public License</name> <url>https://www.gnu.org/licenses/old-licenses/lgpl-2.1.en.html</url> </license> </licenses> <scm> <connection>scm:git:git://github.com/grigoriliev/jsampler-fantasia-3rd-party-libs.git</connection> <developerConnection>scm:git:ssh://github.com/grigoriliev/jsampler-fantasia-3rd-party-libs.git</developerConnection> <url>https://github.com/grigoriliev/jsampler-fantasia-3rd-party-libs/tree/master</url> </scm> <build> <plugins> <plugin> <artifactId>maven-shade-plugin</artifactId> <version>3.4.1</version> <executions> <execution> <phase>package</phase> <goals> <goal>shade</goal> </goals> </execution> </executions> <configuration> <createDependencyReducedPom>true</createDependencyReducedPom> <useDependencyReducedPomInJar>true</useDependencyReducedPomInJar> <artifactSet> <excludes> <exclude>module-info.java</exclude> </excludes> </artifactSet> </configuration> </plugin> <plugin> <groupId>org.moditect</groupId> <artifactId>moditect-maven-plugin</artifactId> <version>1.0.0.RC2</version> <executions> <execution> <id>add-module-infos</id> <phase>package</phase> <goals> <goal>add-module-info</goal> </goals> <configuration> <overwriteExistingFiles>true</overwriteExistingFiles> <module> <moduleInfoFile>src/main/java/module-info.java</moduleInfoFile> </module> </configuration> </execution> </executions> </plugin> </plugins> </build> <profiles> <profile> <id>sonatype-repo</id> <distributionManagement> <repository> <id>ossrh</id> <url>https://s01.oss.sonatype.org/content/repositories/releases</url> </repository> <snapshotRepository> <id>ossrh</id> <url>https://s01.oss.sonatype.org/content/repositories/snapshots</url> </snapshotRepository> </distributionManagement> </profile> </profiles> <repositories> <repository> <id>jsampler-fantasia-3rd-party-libs-repo</id> <url>file://${project.basedir}/repo</url> </repository> </repositories> <properties> <maven.compiler.target>11</maven.compiler.target> <maven.compiler.source>11</maven.compiler.source> <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding> </properties> </project>