mirror of
https://github.com/zxing/zxing.git
synced 2025-01-13 04:07:27 -08:00
Remove explicit Central ref; move jarsigner config to pluginManagement
This commit is contained in:
parent
563294b36e
commit
3ef50066db
63
pom.xml
63
pom.xml
|
@ -99,25 +99,6 @@
|
||||||
<zxing.version>3.1.1-SNAPSHOT</zxing.version>
|
<zxing.version>3.1.1-SNAPSHOT</zxing.version>
|
||||||
</properties>
|
</properties>
|
||||||
|
|
||||||
<repositories>
|
|
||||||
<repository>
|
|
||||||
<id>central</id>
|
|
||||||
<url>https://repo1.maven.org/maven2</url>
|
|
||||||
<releases>
|
|
||||||
<enabled>true</enabled>
|
|
||||||
</releases>
|
|
||||||
</repository>
|
|
||||||
</repositories>
|
|
||||||
<pluginRepositories>
|
|
||||||
<pluginRepository>
|
|
||||||
<id>central</id>
|
|
||||||
<url>https://repo1.maven.org/maven2</url>
|
|
||||||
<releases>
|
|
||||||
<enabled>true</enabled>
|
|
||||||
</releases>
|
|
||||||
</pluginRepository>
|
|
||||||
</pluginRepositories>
|
|
||||||
|
|
||||||
<build>
|
<build>
|
||||||
<plugins>
|
<plugins>
|
||||||
<plugin>
|
<plugin>
|
||||||
|
@ -253,6 +234,28 @@
|
||||||
<groupId>org.apache.maven.plugins</groupId>
|
<groupId>org.apache.maven.plugins</groupId>
|
||||||
<artifactId>maven-jarsigner-plugin</artifactId>
|
<artifactId>maven-jarsigner-plugin</artifactId>
|
||||||
<version>1.3.2</version>
|
<version>1.3.2</version>
|
||||||
|
<executions>
|
||||||
|
<execution>
|
||||||
|
<id>signing</id>
|
||||||
|
<goals>
|
||||||
|
<goal>sign</goal>
|
||||||
|
</goals>
|
||||||
|
<phase>package</phase>
|
||||||
|
<configuration>
|
||||||
|
<includes>
|
||||||
|
<include>target/*.apk</include>
|
||||||
|
</includes>
|
||||||
|
<keystore>../private/ZXing.keystore</keystore>
|
||||||
|
<alias>zxing</alias>
|
||||||
|
<arguments>
|
||||||
|
<argument>-sigalg</argument>
|
||||||
|
<argument>MD5withRSA</argument>
|
||||||
|
<argument>-digestalg</argument>
|
||||||
|
<argument>SHA1</argument>
|
||||||
|
</arguments>
|
||||||
|
</configuration>
|
||||||
|
</execution>
|
||||||
|
</executions>
|
||||||
</plugin>
|
</plugin>
|
||||||
<plugin>
|
<plugin>
|
||||||
<groupId>org.apache.maven.plugins</groupId>
|
<groupId>org.apache.maven.plugins</groupId>
|
||||||
|
@ -620,28 +623,6 @@
|
||||||
<plugin>
|
<plugin>
|
||||||
<groupId>org.apache.maven.plugins</groupId>
|
<groupId>org.apache.maven.plugins</groupId>
|
||||||
<artifactId>maven-jarsigner-plugin</artifactId>
|
<artifactId>maven-jarsigner-plugin</artifactId>
|
||||||
<executions>
|
|
||||||
<execution>
|
|
||||||
<id>signing</id>
|
|
||||||
<goals>
|
|
||||||
<goal>sign</goal>
|
|
||||||
</goals>
|
|
||||||
<phase>package</phase>
|
|
||||||
<configuration>
|
|
||||||
<includes>
|
|
||||||
<include>target/*.apk</include>
|
|
||||||
</includes>
|
|
||||||
<keystore>../private/ZXing.keystore</keystore>
|
|
||||||
<alias>zxing</alias>
|
|
||||||
<arguments>
|
|
||||||
<argument>-sigalg</argument>
|
|
||||||
<argument>MD5withRSA</argument>
|
|
||||||
<argument>-digestalg</argument>
|
|
||||||
<argument>SHA1</argument>
|
|
||||||
</arguments>
|
|
||||||
</configuration>
|
|
||||||
</execution>
|
|
||||||
</executions>
|
|
||||||
</plugin>
|
</plugin>
|
||||||
<plugin>
|
<plugin>
|
||||||
<groupId>com.jayway.maven.plugins.android.generation2</groupId>
|
<groupId>com.jayway.maven.plugins.android.generation2</groupId>
|
||||||
|
|
Loading…
Reference in a new issue