javase
Used in:
components
- OverviewOverview
- VersionsVersions
- DependentsDependents
- DependenciesDependencies
<dependency> <groupId>net.glxn.qrgen</groupId> <artifactId>javase</artifactId> <version>2.0</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> <parent> <groupId>net.glxn.qrgen</groupId> <artifactId>qrgen-parent</artifactId> <version>2.0</version> </parent> <artifactId>javase</artifactId> <packaging>jar</packaging> <name>QRGen-javase</name> <description>a simple QRCode generation api for java built on top ZXING</description> <url>http://kenglxn.github.io/QRGen/</url> <licenses> <license> <name>Apache License v2</name> <url>http://www.apache.org/licenses/LICENSE-2.0.html</url> </license> </licenses> <scm> <connection>scm:git:git@github.com:kenglxn/QRGen.git</connection> <developerConnection>scm:git:git@github.com:kenglxn/QRGen.git</developerConnection> <url>git@github.com:kenglxn/QRGen.git</url> </scm> <developers> <developer> <name>Ken Gullaksen</name> <email>ken@glxn.net</email> </developer> </developers> <build> <plugins> <plugin> <artifactId>maven-compiler-plugin</artifactId> <version>${maven-compiler-plugin.version}</version> <configuration> <source>${maven-compiler-plugin.source}</source> <target>${maven-compiler-plugin.target}</target> <encoding>UTF-8</encoding> </configuration> </plugin> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-source-plugin</artifactId> <executions> <execution> <goals> <goal>jar</goal> </goals> </execution> </executions> </plugin> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-javadoc-plugin</artifactId> <executions> <execution> <goals> <goal>jar</goal> </goals> </execution> </executions> </plugin> </plugins> </build> <dependencies> <dependency> <groupId>com.google.zxing</groupId> <artifactId>javase</artifactId> </dependency> <dependency> <groupId>net.glxn.qrgen</groupId> <artifactId>core</artifactId> <version>${project.version}</version> </dependency> <dependency> <groupId>org.jfree</groupId> <artifactId>jfreesvg</artifactId> </dependency> <dependency> <groupId>junit</groupId> <artifactId>junit</artifactId> </dependency> </dependencies> </project>