csoundffm
Used in
components
- OverviewOverview
- VersionsVersions
- DependentsDependents
- DependenciesDependencies
<dependency> <groupId>com.kunstmusik</groupId> <artifactId>csoundffm</artifactId> <version>1.0.2</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/xsd/maven-4.0.0.xsd"> <modelVersion>4.0.0</modelVersion> <groupId>com.kunstmusik</groupId> <artifactId>csoundffm</artifactId> <version>1.0.2</version> <packaging>jar</packaging> <description>Java FFM binding to Csound</description> <url>http://github.com/kunstmusik/CsoundFFM</url> <scm> <connection>scm:git:https://github.com/kunstmusik/CsoundFFM.git</connection> <developerConnection>scm:git:git@github.com:kunstmusik/CsoundFFM.git</developerConnection> <url>https://github.com/kunstmusik/CsoundFFM</url> </scm> <licenses> <license> <name>GNU Lesser General Public License, Version 2.1</name> <url>https://www.gnu.org/licenses/old-licenses/lgpl-2.1.txt</url> <distribution>repo</distribution> </license> </licenses> <properties> <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding> <maven.compiler.source>22</maven.compiler.source> <maven.compiler.target>22</maven.compiler.target> <exec.mainClass>com.kunstmusik.csoundffm.CsoundFFM</exec.mainClass> </properties> <developers> <developer> <name>Steven Yi</name> <email>stevenyi@gmail.com</email> <url>https://www.kunstmusik.com</url> </developer> </developers> <build> <plugins> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-source-plugin</artifactId> <version>3.3.1</version> <executions> <execution> <id>attach-sources</id> <goals> <goal>jar-no-fork</goal> </goals> </execution> </executions> </plugin> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-javadoc-plugin</artifactId> <version>3.7.0</version> <executions> <execution> <id>attach-javadocs</id> <goals> <goal>jar</goal> </goals> </execution> </executions> </plugin> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-gpg-plugin</artifactId> <version>3.2.4</version> <executions> <execution> <id>sign-artifacts</id> <phase>verify</phase> <goals> <goal>sign</goal> </goals> </execution> </executions> </plugin> <plugin> <groupId>org.sonatype.central</groupId> <artifactId>central-publishing-maven-plugin</artifactId> <version>0.5.0</version> <extensions>true</extensions> <configuration> <publishingServerId>central</publishingServerId> <autoPublish>true</autoPublish> <waitForPublishCompletion>true</waitForPublishCompletion> </configuration> </plugin> </plugins> </build> </project>