jcef
Used in:
components
- OverviewOverview
- VersionsVersions
- DependentsDependents
- DependenciesDependencies
<dependency> <groupId>com.github.doraig</groupId> <artifactId>jcef</artifactId> <version>78.1-win64</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.github.doraig</groupId> <artifactId>jcef</artifactId> <version>${project.version}</version> <packaging>jar</packaging> <name>jcef</name> <description>java-org.cef 2 maven support by doraig</description> <url>https://github.com/doraig/jcef</url> <properties> <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding> </properties> <issueManagement> <system>GitHub Issue</system> <url>https://github.com/doraig/jcef/issues</url> </issueManagement> <licenses> <license> <name>BSD License</name> <url>https://github.com/doraig/jcef/blob/master/LICENSE.txt</url> </license> </licenses> <developers> <developer> <name>doraig</name> <email>pigopoyo@gmail.com</email> </developer> </developers> <scm> <connection>scm:git:ssh://git@github.com:doraig/jcef.git</connection> <developerConnection>scm:git:ssh://git@github.com:doraig/jcef.git</developerConnection> <url>https://github.com/doraig/jcef.git</url> </scm> <dependencies> <!-- https://mvnrepository.com/artifact/org.jogamp.jogl/jogl-all --> <dependency> <groupId>org.jogamp.jogl</groupId> <artifactId>jogl-all</artifactId> <version>2.3.2</version> </dependency> <!-- https://mvnrepository.com/artifact/org.jogamp.gluegen/gluegen-rt --> <dependency> <groupId>org.jogamp.gluegen</groupId> <artifactId>gluegen-rt</artifactId> <version>2.3.2</version> </dependency> </dependencies> <distributionManagement> <snapshotRepository> <id>ossgd</id> <url>https://oss.sonatype.org/content/repositories/snapshots/</url> </snapshotRepository> <repository> <id>ossgd</id> <url>https://oss.sonatype.org/service/local/staging/deploy/maven2/</url> </repository> </distributionManagement> <profiles> <profile> <id>releasex86</id> <properties> <project.version>78.1-win32</project.version> </properties> <dependencies> <dependency> <groupId>org.jogamp.jogl</groupId> <artifactId>jogl-all</artifactId> <version>2.3.2</version> <classifier>natives-windows-i586</classifier> </dependency> <dependency> <groupId>org.jogamp.gluegen</groupId> <artifactId>gluegen-rt</artifactId> <version>2.3.2</version> <classifier>natives-windows-i586</classifier> </dependency> </dependencies> </profile> <profile> <id>releasex64</id> <activation> <activeByDefault>true</activeByDefault> </activation> <properties> <project.version>78.1-win64</project.version> </properties> <dependencies> <dependency> <groupId>org.jogamp.jogl</groupId> <artifactId>jogl-all</artifactId> <version>2.3.2</version> <classifier>natives-windows-amd64</classifier> </dependency> <dependency> <groupId>org.jogamp.gluegen</groupId> <artifactId>gluegen-rt</artifactId> <version>2.3.2</version> <classifier>natives-windows-amd64</classifier> </dependency> </dependencies> </profile> <profile> <id>releaseMac</id> <properties> <project.version>78.1-mac</project.version> </properties> <build> <plugins> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-compiler-plugin</artifactId> <version>3.8.0</version> <configuration> <source>1.8</source> <target>1.8</target> <includes> <include> org/cef/browser/mac/*.* </include> </includes> </configuration> </plugin> </plugins> </build> <dependencies> <dependency> <groupId>org.jogamp.jogl</groupId> <artifactId>jogl-all</artifactId> <version>2.3.2</version> <classifier>natives-macosx-universal</classifier> </dependency> <dependency> <groupId>org.jogamp.gluegen</groupId> <artifactId>gluegen-rt</artifactId> <version>2.3.2</version> <classifier>natives-macosx-universal</classifier> </dependency> </dependencies> </profile> <profile> <id>releaseLinux</id> <properties> <project.version>78.1-linux64</project.version> </properties> <dependencies> <dependency> <groupId>org.jogamp.jogl</groupId> <artifactId>jogl-all</artifactId> <version>2.3.2</version> <classifier>natives-linux-amd64</classifier> </dependency> <dependency> <groupId>org.jogamp.gluegen</groupId> <artifactId>gluegen-rt</artifactId> <version>2.3.2</version> <classifier>natives-linux-amd64</classifier> </dependency> </dependencies> </profile> </profiles> <build> <sourceDirectory>src/main/java</sourceDirectory> <testSourceDirectory>src/test/java</testSourceDirectory> <resources> <resource> <directory>src/main/resources</directory> </resource> </resources> <plugins> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-compiler-plugin</artifactId> <version>3.8.0</version> <configuration> <source>1.8</source> <target>1.8</target> <excludes> <exclude>org/cef/browser/mac/*.*</exclude> </excludes> </configuration> </plugin> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-source-plugin</artifactId> <version>3.0.1</version> <executions> <execution> <phase>package</phase> <goals> <goal>jar-no-fork</goal> </goals> </execution> </executions> <configuration> <excludes> <exclude>*.pak</exclude> <exclude>*.dll</exclude> <exclude>*.dat</exclude> <exclude>*.dat</exclude> <exclude>*.exe</exclude> <exclude>*.bin</exclude> <exclude>locales/</exclude> <exclude>tests/</exclude> </excludes> </configuration> </plugin> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-javadoc-plugin</artifactId> <version>2.10.4</version> <configuration> <additionalparam>-Xdoclint:none</additionalparam> </configuration> <executions> <execution> <phase>package</phase> <goals> <goal>jar</goal> </goals> </execution> </executions> </plugin> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-gpg-plugin</artifactId> <version>1.6</version> <executions> <execution> <id>sign-artifacts</id> <phase>verify</phase> <goals> <goal>sign</goal> </goals> </execution> </executions> </plugin> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-resources-plugin</artifactId> <version>3.1.0</version> <executions> <execution> <id>copy-resources</id> <phase>validate</phase> <goals> <goal>copy-resources</goal> </goals> <configuration> <outputDirectory>src/main/resources/lib</outputDirectory> <resources> <resource> <directory>${basedir}/jcef_build/native/Release</directory> </resource> </resources> </configuration> </execution> </executions> </plugin> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-antrun-plugin</artifactId> <version>1.7</version> <executions> <execution> <phase>install</phase> <goals> <goal>run</goal> </goals> <configuration> <tasks> <delete dir="${project.basedir}/src/main/resources/lib"/> </tasks> </configuration> </execution> </executions> </plugin> </plugins> </build> </project>