Skip to content

Commit 19c73fc

Browse files
committed
Merged.
2 parents 86149fa + 8e54f6f commit 19c73fc

9 files changed

Lines changed: 94 additions & 0 deletions

File tree

java/pom.xml

Lines changed: 94 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,94 @@
1+
<?xml version="1.0" encoding="UTF-8"?>
2+
<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">
3+
<modelVersion>4.0.0</modelVersion>
4+
5+
<groupId>io.nayuki</groupId>
6+
<artifactId>qrcodegen</artifactId>
7+
<version>1.4.0</version>
8+
<packaging>jar</packaging>
9+
<properties>
10+
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
11+
<maven.compiler.source>1.8</maven.compiler.source>
12+
<maven.compiler.target>1.8</maven.compiler.target>
13+
</properties>
14+
15+
<build>
16+
<plugins>
17+
<plugin>
18+
<groupId>org.apache.maven.plugins</groupId>
19+
<artifactId>maven-source-plugin</artifactId>
20+
<version>2.2.1</version>
21+
<executions>
22+
<execution>
23+
<id>attach-sources</id>
24+
<goals>
25+
<goal>jar-no-fork</goal>
26+
</goals>
27+
</execution>
28+
</executions>
29+
</plugin>
30+
<plugin>
31+
<groupId>org.apache.maven.plugins</groupId>
32+
<artifactId>maven-javadoc-plugin</artifactId>
33+
<version>2.9.1</version>
34+
<executions>
35+
<execution>
36+
<id>attach-javadocs</id>
37+
<goals>
38+
<goal>jar</goal>
39+
</goals>
40+
</execution>
41+
</executions>
42+
</plugin>
43+
<plugin>
44+
<groupId>org.apache.maven.plugins</groupId>
45+
<artifactId>maven-gpg-plugin</artifactId>
46+
<version>1.5</version>
47+
<executions>
48+
<execution>
49+
<id>sign-artifacts</id>
50+
<phase>verify</phase>
51+
<goals>
52+
<goal>sign</goal>
53+
</goals>
54+
</execution>
55+
</executions>
56+
</plugin>
57+
</plugins>
58+
</build>
59+
60+
<name>QR Code generator library</name>
61+
<description>High quality QR Code generator library</description>
62+
<url>https://www.nayuki.io/page/qr-code-generator-library</url>
63+
<inceptionYear>2016</inceptionYear>
64+
<licenses>
65+
<license>
66+
<name>The MIT License</name>
67+
<url>https://opensource.org/licenses/MIT</url>
68+
<distribution>repo</distribution>
69+
</license>
70+
</licenses>
71+
<developers>
72+
<developer>
73+
<name>Project Nayuki</name>
74+
<email>me@nayuki.io</email>
75+
<url>https://www.nayuki.io/</url>
76+
</developer>
77+
</developers>
78+
79+
<scm>
80+
<connection>scm:git:git://github.com/nayuki/QR-Code-generator.git</connection>
81+
<developerConnection>scm:git:ssh://github.com:nayuki/QR-Code-generator.git</developerConnection>
82+
<url>https://github.com/nayuki/QR-Code-generator/tree/master/java</url>
83+
</scm>
84+
<distributionManagement>
85+
<snapshotRepository>
86+
<id>ossrh</id>
87+
<url>https://oss.sonatype.org/content/repositories/snapshots</url>
88+
</snapshotRepository>
89+
<repository>
90+
<id>ossrh</id>
91+
<url>https://oss.sonatype.org/service/local/staging/deploy/maven2/</url>
92+
</repository>
93+
</distributionManagement>
94+
</project>
File renamed without changes.

java/io/nayuki/qrcodegen/DataTooLongException.java renamed to java/src/main/java/io/nayuki/qrcodegen/DataTooLongException.java

File renamed without changes.
File renamed without changes.

java/io/nayuki/qrcodegen/QrCodeGeneratorDemo.java renamed to java/src/main/java/io/nayuki/qrcodegen/QrCodeGeneratorDemo.java

File renamed without changes.

java/io/nayuki/qrcodegen/QrCodeGeneratorWorker.java renamed to java/src/main/java/io/nayuki/qrcodegen/QrCodeGeneratorWorker.java

File renamed without changes.
File renamed without changes.

java/io/nayuki/qrcodegen/QrSegmentAdvanced.java renamed to java/src/main/java/io/nayuki/qrcodegen/QrSegmentAdvanced.java

File renamed without changes.
File renamed without changes.

0 commit comments

Comments
 (0)