mirror of
https://github.com/zxing/zxing.git
synced 2024-11-09 20:44:03 -08:00
Add module name to javase
This commit is contained in:
parent
f1683e1f4f
commit
80e72418a4
|
@ -23,12 +23,14 @@ after_success: if [ -n "$JACOCO" ]; then bash <(curl -s https://codecov.io/bash)
|
|||
|
||||
# The Android SDK package android-sdk-linux.tar.bz2 above is built roughly like so:
|
||||
#
|
||||
# Download Command Line tools for Linux from https://developer.android.com/studio#downloads
|
||||
#
|
||||
# mkdir android-sdk-linux; cd android-sdk-linux
|
||||
# curl -O https://dl.google.com/android/repository/tools_r25.2.3-linux.zip
|
||||
# mv /path/to/sdk-tools-linux-4333796.zip .
|
||||
# unzip *.zip; rm *.zip
|
||||
#
|
||||
# # Or different, more recent versions; see sdkmanager --list
|
||||
# ./tools/bin/sdkmanager "platforms;android-22" "build-tools;25.0.2"
|
||||
# ./tools/bin/sdkmanager "platforms;android-22" "build-tools;28.0.2"
|
||||
# # Accept license
|
||||
#
|
||||
# ./tools/bin/sdkmanager --update
|
||||
|
|
|
@ -52,6 +52,17 @@
|
|||
|
||||
<build>
|
||||
<plugins>
|
||||
<plugin>
|
||||
<groupId>org.apache.maven.plugins</groupId>
|
||||
<artifactId>maven-jar-plugin</artifactId>
|
||||
<configuration>
|
||||
<archive>
|
||||
<manifestEntries>
|
||||
<Automatic-Module-Name>com.google.zxing.javase</Automatic-Module-Name>
|
||||
</manifestEntries>
|
||||
</archive>
|
||||
</configuration>
|
||||
</plugin>
|
||||
<plugin>
|
||||
<groupId>org.apache.maven.plugins</groupId>
|
||||
<artifactId>maven-assembly-plugin</artifactId>
|
||||
|
|
Loading…
Reference in a new issue