ea-async
Used in:
components
- OverviewOverview
- VersionsVersions
- DependentsDependents
- DependenciesDependencies
<dependency> <groupId>com.ea.async</groupId> <artifactId>ea-async</artifactId> <version>1.2.3</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"> <parent> <artifactId>ea-async-parent</artifactId> <groupId>com.ea.async</groupId> <version>1.2.3</version> </parent> <modelVersion>4.0.0</modelVersion> <artifactId>ea-async</artifactId> <name>EA Async-Await</name> <build> <plugins> <plugin> <artifactId>maven-compiler-plugin</artifactId> <configuration> <compilerArgument>-proc:none</compilerArgument> </configuration> </plugin> <plugin> <artifactId>maven-jar-plugin</artifactId> <configuration> <archive> <index>true</index> <manifestEntries> <Premain-Class>com.ea.async.instrumentation.Premain</Premain-Class> <Agent-Class>com.ea.async.instrumentation.Agent</Agent-Class> <Main-Class>com.ea.async.instrumentation.Main</Main-Class> <Can-Redefine-Classes>true</Can-Redefine-Classes> <Can-Retransform-Classes>true</Can-Retransform-Classes> </manifestEntries> </archive> </configuration> </plugin> <plugin> <artifactId>maven-shade-plugin</artifactId> <executions> <execution> <phase>package</phase> <goals> <goal>shade</goal> </goals> <configuration> <artifactSet> <includes> <include>net.bytebuddy:byte-buddy-agent</include> <include>org.ow2.asm:asm</include> <include>org.ow2.asm:asm-analysis</include> <include>org.ow2.asm:asm-util</include> <include>org.ow2.asm:asm-tree</include> </includes> </artifactSet> <relocations> <relocation> <pattern>org.objectweb.</pattern> <shadedPattern>com.ea.async.shaded.org.objectweb.</shadedPattern> </relocation> <relocation> <pattern>net.bytebuddy.</pattern> <shadedPattern>com.ea.async.shaded.net.bytebuddy.</shadedPattern> </relocation> </relocations> </configuration> </execution> </executions> </plugin> </plugins> </build> <dependencies> <dependency> <groupId>org.slf4j</groupId> <artifactId>slf4j-api</artifactId> <version>1.7.25</version> <scope>compile</scope> </dependency> <dependency> <groupId>org.apache.commons</groupId> <artifactId>commons-lang3</artifactId> <version>3.7</version> <scope>test</scope> </dependency> <dependency> <groupId>junit</groupId> <artifactId>junit</artifactId> <version>4.12</version> <scope>test</scope> <exclusions> <exclusion> <artifactId>hamcrest-core</artifactId> <groupId>org.hamcrest</groupId> </exclusion> </exclusions> </dependency> <dependency> <groupId>commons-io</groupId> <artifactId>commons-io</artifactId> <version>2.6</version> <scope>test</scope> </dependency> </dependencies> <properties> <asm.version>7.1</asm.version> </properties> </project>