jaffree
Used in:
components
- OverviewOverview
- VersionsVersions
- DependentsDependents
- DependenciesDependencies
<dependency> <groupId>com.github.kokorin.jaffree</groupId> <artifactId>jaffree</artifactId> <version>2024.08.29</version> </dependency>
<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.github.kokorin.jaffree</groupId> <artifactId>jaffree</artifactId> <!--Version is controlled by maven-git-versioning-extension --> <version>2024.08.29</version> <packaging>jar</packaging> <name>Jaffree</name> <description>Java ffmpeg command-line wrapper.</description> <url>https://github.com/kokorin/Jaffree</url> <licenses> <license> <name>The Apache Software License, Version 2.0</name> <url>http://www.apache.org/licenses/LICENSE-2.0.txt</url> </license> </licenses> <developers> <developer> <name>Denis Kokorin</name> <email>kokorin86@gmail.com</email> <url>https://github.com/kokorin</url> </developer> </developers> <scm> <connection>scm:git:git://github.com/kokorin/Jaffree.git</connection> <developerConnection>scm:git:ssh://github.com/kokorin/Jaffree.git</developerConnection> <url>http://github.com/kokorin/Jaffree/tree/master</url> </scm> <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> <properties> <sl4j.version>1.7.32</sl4j.version> <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding> <sonar.projectKey>kokorin_Jaffree</sonar.projectKey> <sonar.organization>kokorin</sonar.organization> <sonar.host.url>https://sonarcloud.io</sonar.host.url> <createSourcesJar>false</createSourcesJar> <shadeSourcesContent>false</shadeSourcesContent> <project.build.outputTimestamp>${git.commit.timestamp.datetime}</project.build.outputTimestamp> </properties> <dependencies> <dependency> <groupId>org.slf4j</groupId> <artifactId>slf4j-api</artifactId> <version>${sl4j.version}</version> <scope>provided</scope> </dependency> <dependency> <groupId>com.grack</groupId> <artifactId>nanojson</artifactId> <version>1.9</version> </dependency> <dependency> <groupId>ch.qos.logback</groupId> <artifactId>logback-classic</artifactId> <version>1.5.7</version> <scope>test</scope> </dependency> <dependency> <groupId>commons-io</groupId> <artifactId>commons-io</artifactId> <version>2.11.0</version> <scope>test</scope> </dependency> <dependency> <groupId>junit</groupId> <artifactId>junit</artifactId> <version>4.13.2</version> <scope>test</scope> </dependency> </dependencies> <profiles> <profile> <!-- This profile enables two pass compilation: 1. Compile all sources with Java 9 target version (including module-info.java) 2. Recompile all sources with Java 8 target version, but module-info.java After this all classes will have Java 8 bytecode (version 52), while module-info.class will have Java 9 bytecode (version 53) --> <id>J9-module</id> <build> <plugins> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-compiler-plugin</artifactId> <configuration> <release>8</release> </configuration> <executions> <execution> <id>default-compile</id> <goals> <goal>compile</goal> </goals> <phase>compile</phase> <configuration> <compileSourceRoots> <sourceRoot>${project.basedir}/src/main/java</sourceRoot> <sourceRoot>${project.basedir}/src/main/java9</sourceRoot> </compileSourceRoots> <release>9</release> </configuration> </execution> <execution> <id>java-8-recompile</id> <goals> <goal>compile</goal> </goals> <phase>compile</phase> </execution> </executions> </plugin> </plugins> </build> </profile> <profile> <id>release</id> <properties> <createSourcesJar>true</createSourcesJar> <shadeSourcesContent>true</shadeSourcesContent> </properties> <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> <phase>prepare-package</phase> <goals> <goal>jar-no-fork</goal> </goals> </execution> </executions> </plugin> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-javadoc-plugin</artifactId> <version>3.5.0</version> <configuration> <source>8</source> </configuration> <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.5</version> <executions> <execution> <id>sign-artifacts</id> <phase>verify</phase> <goals> <goal>sign</goal> </goals> </execution> </executions> </plugin> <plugin> <groupId>org.sonatype.plugins</groupId> <artifactId>nexus-staging-maven-plugin</artifactId> <version>1.6.13</version> <extensions>true</extensions> <configuration> <serverId>ossrh</serverId> <nexusUrl>https://oss.sonatype.org/</nexusUrl> <autoReleaseAfterClose>true</autoReleaseAfterClose> </configuration> </plugin> </plugins> </build> </profile> </profiles> <build> <plugins> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-compiler-plugin</artifactId> <version>3.11.0</version> <configuration> <source>8</source> <target>8</target> <compilerArgs> <compilerArg>-Xlint:all,-deprecation</compilerArg> <compilerArg>-Xdoclint:all</compilerArg> </compilerArgs> </configuration> <executions> <execution> <id>default-compile</id> <goals> <goal>compile</goal> </goals> <phase>compile</phase> </execution> </executions> </plugin> <plugin> <groupId>org.sonarsource.scanner.maven</groupId> <artifactId>sonar-maven-plugin</artifactId> <version>3.9.1.2184</version> </plugin> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-checkstyle-plugin</artifactId> <version>3.5.0</version> <configuration> <indentSize>4</indentSize> <configLocation>checkstyle.xml</configLocation> <propertyExpansion>project.basedir=${project.basedir}</propertyExpansion> </configuration> <dependencies> <dependency> <groupId>com.puppycrawl.tools</groupId> <artifactId>checkstyle</artifactId> <version>10.12.3</version> </dependency> </dependencies> <executions> <execution> <goals> <goal>check</goal> </goals> </execution> </executions> </plugin> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-pmd-plugin</artifactId> <version>3.15.0</version> <configuration> <failOnViolation>true</failOnViolation> <printFailingErrors>true</printFailingErrors> </configuration> <executions> <execution> <goals> <goal>check</goal> </goals> </execution> </executions> </plugin> <plugin> <groupId>org.jacoco</groupId> <artifactId>jacoco-maven-plugin</artifactId> <version>0.8.7</version> </plugin> </plugins> </build> </project>