Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

feat(#11): Add deployment assets #15

Merged
merged 3 commits into from
Aug 2, 2023
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 5 additions & 1 deletion .rultor.yml
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,10 @@ architect:
- volodya-lombrozo
docker:
image: yegor256/rultor-image:1.13.0
assets:
settings.xml: yegor256/objectionary-secrets#settings.xml
pubring.gpg: yegor256/objectionary-secrets#pubring.gpg
secring.gpg: yegor256/objectionary-secrets#secring.gpg
merge:
script: mvn clean install -Pqulice --errors --batch-mode
release:
Expand All @@ -10,4 +14,4 @@ release:
[[ "${tag}" =~ ^[0-9]+\.[0-9]+\.[0-9]+$ ]] || exit -1
mvn versions:set "-DnewVersion=${tag}" "-DprocessPlugins=false"
git commit -am "${tag}"
mvn clean install -Pqulice --errors --batch-mode
mvn clean deploy -Pqulice -Psonatype --errors --batch-mode --settings ../settings.xml -Dstyle.color=never
50 changes: 48 additions & 2 deletions pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -33,8 +33,54 @@ SOFTWARE.
<artifactId>jeo-maven-plugin</artifactId>
<packaging>maven-plugin</packaging>
<version>1.0-SNAPSHOT</version>
<name>jeo-maven-plugin Maven Mojo</name>
<url>http://maven.apache.org</url>
<name>jeo</name>
<url>https://github.com/objectionary/jeo-maven-plugin</url>
<description>Optimisation of Java Bytecode via EOLANG</description>
<inceptionYear>2023</inceptionYear>
<organization>
<name>EO</name>
<url>https://github.com/objectionary/eo</url>
</organization>
<licenses>
<license>
<name>MIT</name>
<url>https://www.eolang.org/LICENSE.txt</url>
<distribution>site</distribution>
</license>
</licenses>
<developers>
<developer>
<id>1</id>
<name>Volodya Lombrozo</name>
<email>volodya.lombrozo@gmail.com</email>
<organization>open-source</organization>
<roles>
<role>Architect</role>
<role>Developer</role>
</roles>
<timezone>+3</timezone>
</developer>
</developers>
<issueManagement>
<system>GitHub</system>
<url>https://github.com/objectionary/jeo-maven-plugin/issues</url>
</issueManagement>
<scm>
<connection>scm:git:git@github.com:objectionary/jeo-maven-plugin.git</connection>
<developerConnection>scm:git:git@github.com:objectionary/jeo-maven-plugin.git
</developerConnection>
<url>https://github.com/objectionary/jeo-maven-plugin</url>
</scm>
<ciManagement>
<system>rultor</system>
<url>https://www.rultor.com</url>
</ciManagement>
<distributionManagement>
<site>
<id>github-pages</id>
<url>https://github.com/objectionary/jeo-maven-plugin</url>
</site>
</distributionManagement>
<dependencies>
<dependency>
<groupId>org.apache.maven</groupId>
Expand Down