emul
Used in:
components
- OverviewOverview
- VersionsVersions
- DependentsDependents
- DependenciesDependencies
<dependency> <groupId>org.apidesign.bck2brwsr</groupId> <artifactId>emul</artifactId> <version>0.81</version> </dependency>
<?xml version="1.0"?> <!-- Back 2 Browser Bytecode Translator Copyright (C) 2012-2018 Jaroslav Tulach <jaroslav.tulach@apidesign.org> This program is free software: you can redistribute it and/or modify it under the terms of the GNU General Public License as published by the Free Software Foundation, version 2 of the License. This program is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License for more details. You should have received a copy of the GNU General Public License along with this program. Look for COPYING file in the top folder. If not, see http://opensource.org/licenses/GPL-2.0. --> <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> <parent> <groupId>org.apidesign.bck2brwsr</groupId> <artifactId>emul.pom</artifactId> <version>0.81</version> </parent> <groupId>org.apidesign.bck2brwsr</groupId> <artifactId>emul</artifactId> <version>0.81</version> <name>Bck2Brwsr API Profile</name> <url>http://maven.apache.org</url> <properties> <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding> </properties> <dependencies> <dependency> <groupId>${project.groupId}</groupId> <artifactId>emul.mini</artifactId> <version>${project.version}</version> <scope>provided</scope> </dependency> <dependency> <groupId>${project.groupId}</groupId> <artifactId>fake</artifactId> <version>${project.version}</version> <scope>provided</scope> </dependency> <dependency> <groupId>${project.groupId}</groupId> <artifactId>launcher.http</artifactId> <version>${project.version}</version> <scope>provided</scope> <exclusions> <exclusion> <groupId>org.apidesign.bck2brwsr</groupId> <artifactId>launcher.fx</artifactId> </exclusion> <exclusion> <groupId>org.glassfish.grizzly</groupId> <artifactId>grizzly-http-server</artifactId> </exclusion> <exclusion> <groupId>org.apidesign.bck2brwsr</groupId> <artifactId>aot</artifactId> </exclusion> </exclusions> </dependency> <dependency> <groupId>${project.groupId}</groupId> <artifactId>vm4brwsr</artifactId> <version>${project.version}</version> <scope>provided</scope> <exclusions> <exclusion> <groupId>com.google.javascript</groupId> <artifactId>closure-compiler</artifactId> </exclusion> </exclusions> </dependency> <dependency> <groupId>org.apidesign.bck2brwsr</groupId> <artifactId>core</artifactId> <version>${project.version}</version> <type>jar</type> <scope>provided</scope> </dependency> <dependency> <groupId>org.netbeans.api</groupId> <artifactId>org-openide-util-lookup</artifactId> <scope>provided</scope> </dependency> </dependencies> <build> <plugins> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-compiler-plugin</artifactId> <configuration> <compilerArguments> <bootclasspath>netbeans.ignore.jdk.bootclasspath</bootclasspath> </compilerArguments> </configuration> </plugin> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-javadoc-plugin</artifactId> <configuration> <excludePackageNames>org.apidesign.bck2brwsr.emul.*</excludePackageNames> <skip>false</skip> <includeDependencySources>true</includeDependencySources> </configuration> </plugin> <plugin> <artifactId>maven-assembly-plugin</artifactId> <version>2.4</version> <executions> <execution> <id>rt</id> <phase>package</phase> <goals> <goal>single</goal> </goals> <configuration> <descriptors> <descriptor>src/main/assembly/rt.xml</descriptor> </descriptors> <finalName>${project.build.finalName}</finalName> </configuration> </execution> </executions> </plugin> <plugin> <groupId>org.apidesign.bck2brwsr</groupId> <artifactId>bck2brwsr-maven-plugin</artifactId> <version>${project.version}</version> <executions> <execution> <goals> <goal>library</goal> </goals> </execution> </executions> <configuration> <mainJar>${project.build.directory}/${project.build.finalName}-rt.jar</mainJar> <aotDeps> <aotDep>org.apidesign.bck2brwsr:emul.mini</aotDep> <aotDep>org.apidesign.bck2brwsr:launcher.http</aotDep> <aotDep>org.apidesign.bck2brwsr:vm4brwsr</aotDep> </aotDeps> </configuration> </plugin> </plugins> </build> </project>