Maven artifacts for 1.0
This commit is contained in:
commit
bfae5b999c
BIN
ru/bvn13/fsm/1.0/fsm-1.0.jar
Normal file
BIN
ru/bvn13/fsm/1.0/fsm-1.0.jar
Normal file
Binary file not shown.
1
ru/bvn13/fsm/1.0/fsm-1.0.jar.md5
Normal file
1
ru/bvn13/fsm/1.0/fsm-1.0.jar.md5
Normal file
@ -0,0 +1 @@
|
|||||||
|
8cc0cf94ec702c7f89fbef1b5640a009
|
1
ru/bvn13/fsm/1.0/fsm-1.0.jar.sha1
Normal file
1
ru/bvn13/fsm/1.0/fsm-1.0.jar.sha1
Normal file
@ -0,0 +1 @@
|
|||||||
|
366cd15b87bdf9093579776a9c457f8aa51aa878
|
114
ru/bvn13/fsm/1.0/fsm-1.0.pom
Normal file
114
ru/bvn13/fsm/1.0/fsm-1.0.pom
Normal file
@ -0,0 +1,114 @@
|
|||||||
|
<?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>fsm</artifactId>
|
||||||
|
<version>1.0</version>
|
||||||
|
|
||||||
|
<packaging>jar</packaging>
|
||||||
|
|
||||||
|
<name>FinalStateMachine</name>
|
||||||
|
<description>Final state machine</description>
|
||||||
|
<url>https://github.com/bvn13/FinalStateMachine</url>
|
||||||
|
|
||||||
|
<licenses>
|
||||||
|
<license>
|
||||||
|
<name>Apache 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>
|
||||||
|
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
|
||||||
|
<project.reporting.outputEncoding>UTF-8</project.reporting.outputEncoding>
|
||||||
|
<maven.compiler.source>1.8</maven.compiler.source>
|
||||||
|
<maven.compiler.target>1.8</maven.compiler.target>
|
||||||
|
|
||||||
|
<github.global.server>github</github.global.server>
|
||||||
|
<github.maven-plugin>0.12</github.maven-plugin>
|
||||||
|
<site.path>https://github.com/bvn13/FinalStateMachine</site.path>
|
||||||
|
</properties>
|
||||||
|
|
||||||
|
|
||||||
|
<distributionManagement>
|
||||||
|
<repository>
|
||||||
|
<id>internal.repo</id>
|
||||||
|
<name>Temporary Staging Repository</name>
|
||||||
|
<url>file://${project.build.directory}/mvn-repo</url>
|
||||||
|
</repository>
|
||||||
|
</distributionManagement>
|
||||||
|
|
||||||
|
<!--
|
||||||
|
<repositories>
|
||||||
|
<repository>
|
||||||
|
<id>FinalStateMachine-mvn-repo</id>
|
||||||
|
<url>https://raw.github.com/bvn13/FinalStateMachine/mvn-repo/</url>
|
||||||
|
<snapshots>
|
||||||
|
<enabled>true</enabled>
|
||||||
|
<updatePolicy>always</updatePolicy>
|
||||||
|
</snapshots>
|
||||||
|
</repository>
|
||||||
|
</repositories>
|
||||||
|
-->
|
||||||
|
|
||||||
|
<dependencies>
|
||||||
|
<dependency>
|
||||||
|
<groupId>junit</groupId>
|
||||||
|
<artifactId>junit</artifactId>
|
||||||
|
<version>4.12</version>
|
||||||
|
<scope>test</scope>
|
||||||
|
</dependency>
|
||||||
|
</dependencies>
|
||||||
|
|
||||||
|
<build>
|
||||||
|
<finalName>FinalStateMachine</finalName>
|
||||||
|
|
||||||
|
<plugins>
|
||||||
|
<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>FinalStateMachine</repositoryName>
|
||||||
|
<repositoryOwner>bvn13</repositoryOwner>
|
||||||
|
</configuration>
|
||||||
|
<executions>
|
||||||
|
<execution>
|
||||||
|
<goals>
|
||||||
|
<goal>site</goal>
|
||||||
|
</goals>
|
||||||
|
<phase>deploy</phase>
|
||||||
|
</execution>
|
||||||
|
</executions>
|
||||||
|
</plugin>
|
||||||
|
</plugins>
|
||||||
|
</build>
|
||||||
|
|
||||||
|
</project>
|
1
ru/bvn13/fsm/1.0/fsm-1.0.pom.md5
Normal file
1
ru/bvn13/fsm/1.0/fsm-1.0.pom.md5
Normal file
@ -0,0 +1 @@
|
|||||||
|
9ff16db3961f6febed5163a8224d8aa5
|
1
ru/bvn13/fsm/1.0/fsm-1.0.pom.sha1
Normal file
1
ru/bvn13/fsm/1.0/fsm-1.0.pom.sha1
Normal file
@ -0,0 +1 @@
|
|||||||
|
fb079255e0e15541fc468821817ecf9ab88e51cc
|
12
ru/bvn13/fsm/maven-metadata.xml
Normal file
12
ru/bvn13/fsm/maven-metadata.xml
Normal file
@ -0,0 +1,12 @@
|
|||||||
|
<?xml version="1.0" encoding="UTF-8"?>
|
||||||
|
<metadata>
|
||||||
|
<groupId>ru.bvn13</groupId>
|
||||||
|
<artifactId>fsm</artifactId>
|
||||||
|
<versioning>
|
||||||
|
<release>1.0</release>
|
||||||
|
<versions>
|
||||||
|
<version>1.0</version>
|
||||||
|
</versions>
|
||||||
|
<lastUpdated>20171228195725</lastUpdated>
|
||||||
|
</versioning>
|
||||||
|
</metadata>
|
1
ru/bvn13/fsm/maven-metadata.xml.md5
Normal file
1
ru/bvn13/fsm/maven-metadata.xml.md5
Normal file
@ -0,0 +1 @@
|
|||||||
|
aeba4d0ddcb8e08626fe30290ded5cec
|
1
ru/bvn13/fsm/maven-metadata.xml.sha1
Normal file
1
ru/bvn13/fsm/maven-metadata.xml.sha1
Normal file
@ -0,0 +1 @@
|
|||||||
|
405ffab39a5afaff98ff86d22ddd9235d1914367
|
Loading…
Reference in New Issue
Block a user