You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
101 lines
3.7 KiB
101 lines
3.7 KiB
![]()
6 years ago
|
<?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>
|
||
|
|
||
|
<groupId>ru.bvn13</groupId>
|
||
|
<artifactId>encryptedpreferences</artifactId>
|
||
|
<version>1.0</version>
|
||
|
|
||
|
|
||
|
<name>EncryptedPreferences</name>
|
||
|
<description>EncryptedPreferences for Java</description>
|
||
|
<url>https://github.com/bvn13/EncryptedPreferences</url>
|
||
|
|
||
|
<licenses>
|
||
|
<license>
|
||
|
<name>The Apache Software License, Version 2.0</name>
|
||
|
<url>http://www.apache.org/licenses/LICENSE-2.0.txt</url>
|
||
|
<distribution>repo</distribution>
|
||
|
</license>
|
||
|
</licenses>
|
||
|
|
||
|
<developers>
|
||
|
<developer>
|
||
|
<id>owner</id>
|
||
|
<name>Vyacheslav Boyko</name>
|
||
|
<email>mail4bvn@gmail.com</email>
|
||
|
<timezone>UTC+3</timezone>
|
||
|
</developer>
|
||
|
</developers>
|
||
|
|
||
|
<properties>
|
||
|
<java.version>1.8</java.version>
|
||
|
<github.global.server>github</github.global.server>
|
||
|
<github.maven-plugin>0.12</github.maven-plugin>
|
||
|
<!-- <github.global.oauth2Token>${env.GITHUB_OAUTH_TOKEN}</github.global.oauth2Token> -->
|
||
|
<site.path>https://github.com/bvn13/EncryptedPreferences</site.path>
|
||
|
</properties>
|
||
|
|
||
|
<distributionManagement>
|
||
|
<repository>
|
||
|
<id>internal.repo</id>
|
||
|
<name>Temporary Staging Repository</name>
|
||
|
<url>file://${project.build.directory}/mvn-repo</url>
|
||
|
</repository>
|
||
|
</distributionManagement>
|
||
|
|
||
|
|
||
|
<build>
|
||
|
<plugins>
|
||
|
<plugin>
|
||
|
<groupId>org.apache.maven.plugins</groupId>
|
||
|
<artifactId>maven-compiler-plugin</artifactId>
|
||
|
<configuration>
|
||
|
<source>${java.version}</source>
|
||
|
<target>${java.version}</target>
|
||
|
</configuration>
|
||
|
</plugin>
|
||
|
<plugin>
|
||
|
<artifactId>maven-compiler-plugin</artifactId>
|
||
|
<configuration>
|
||
|
<source>${java.version}</source>
|
||
|
<target>${java.version}</target>
|
||
|
</configuration>
|
||
|
</plugin>
|
||
|
|
||
|
<plugin>
|
||
|
<artifactId>maven-deploy-plugin</artifactId>
|
||
|
<version>2.8.2</version>
|
||
|
<configuration>
|
||
|
<altDeploymentRepository>internal.repo::default::file://${project.build.directory}/mvn-repo</altDeploymentRepository>
|
||
|
</configuration>
|
||
|
</plugin>
|
||
|
<plugin>
|
||
|
<groupId>com.github.github</groupId>
|
||
|
<artifactId>site-maven-plugin</artifactId>
|
||
|
<version>${github.maven-plugin}</version>
|
||
|
<configuration>
|
||
|
<message>Maven artifacts for ${project.version}</message>
|
||
|
<noJekyll>true</noJekyll>
|
||
|
<outputDirectory>${project.build.directory}/mvn-repo</outputDirectory>
|
||
|
<branch>refs/heads/mvn-repo</branch>
|
||
|
<includes><include>**/*</include></includes>
|
||
|
<repositoryName>EncryptedPreferences</repositoryName>
|
||
|
<repositoryOwner>bvn13</repositoryOwner>
|
||
|
</configuration>
|
||
|
<executions>
|
||
|
<execution>
|
||
|
<goals>
|
||
|
<goal>site</goal>
|
||
|
</goals>
|
||
|
<phase>deploy</phase>
|
||
|
</execution>
|
||
|
</executions>
|
||
|
</plugin>
|
||
|
|
||
|
</plugins>
|
||
|
</build>
|
||
|
|
||
|
</project>
|