jasync-driver
Used in:
components
- OverviewOverview
- VersionsVersions
- DependentsDependents
- DependenciesDependencies
<dependency>
<groupId>com.github.ryankenney.jasync_driver</groupId>
<artifactId>jasync-driver</artifactId>
<version>1.0</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/maven-v4_0_0.xsd"> <modelVersion>4.0.0</modelVersion> <groupId>com.github.ryankenney.jasync_driver</groupId> <artifactId>jasync-driver</artifactId> <name>jasync-driver</name> <packaging>jar</packaging> <version>1.0</version> <description>Library used to define asynchronous logic as if it were synchronous</description> <url>https://github.com/ryankenney/jasync-driver</url> <licenses> <license> <name>Apache License, Version 2.0</name> <url>http://www.apache.org/licenses/LICENSE-2.0.txt</url> <distribution>repo</distribution> <comments>A business-friendly OSS license</comments> </license> </licenses> <scm> <url>https://github.com/ryankenney/jasync-driver</url> <connection>scm:git:git://github.com/ryankenney/jasync-driver.git</connection> <developerConnection>scm:git:git@github.com:ryankenney/jasync-driver.git</developerConnection> </scm> <developers> <developer> <email>ryan@ryankenney.info</email> <name>Ryan Kenney</name> <url>https://github.com/ryankenney</url> <id>ryankenney</id> </developer> </developers> <properties> <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding> </properties> <dependencies> <!-- Unit testing library --> <dependency> <groupId>junit</groupId> <artifactId>junit</artifactId> <version>4.12</version> </dependency> </dependencies> <build> <plugins> <!-- Sets JDK/JRE compliance level --> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-compiler-plugin</artifactId> <version>3.3</version> <configuration> <source>1.7</source> <target>1.7</target> </configuration> </plugin> <!-- Builds javadoc-jar for easy viewing in IDEs --> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-javadoc-plugin</artifactId> <executions> <execution> <id>attach-javadocs</id> <goals> <goal>jar</goal> </goals> </execution> </executions> </plugin> <!-- Builds sources-jar for easy viewing in IDEs --> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-source-plugin</artifactId> <executions> <execution> <id>attach-sources</id> <goals> <goal>jar</goal> </goals> </execution> </executions> </plugin> </plugins> </build> </project>