Skip to content

Commit

Permalink
Release 1.1.0
Browse files Browse the repository at this point in the history
  • Loading branch information
fdaugan committed Feb 26, 2023
1 parent 1272a12 commit baf59a2
Show file tree
Hide file tree
Showing 6 changed files with 101 additions and 283 deletions.
67 changes: 67 additions & 0 deletions .github/workflows/build.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,67 @@
name: SonarCloud
on:
push:
branches:
- master
pull_request:
types: [opened, synchronize, reopened]
jobs:
build:
name: Build and analyze
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
with:
fetch-depth: 0 # Shallow clones should be disabled for a better relevancy of analysis
- name: Set up JDK
uses: actions/setup-java@v3
with:
java-version: 17
distribution: 'temurin'
cache: 'maven'
- name: maven-settings-xml-action
uses: whelk-io/maven-settings-xml-action@v21
with:
repositories: '[
{ "id": "spring-milestone", "url": "https://repo.spring.io/milestone/"},
{ "id": "oss-sonatype", "url": "https://oss.sonatype.org/service/local/repositories/releases/content/"}
]'
plugin_repositories: '[{ "id": "spring-milestone", "url": "https://repo.spring.io/milestone/"}]'
active_profiles: '["github"]'
- name: Cache SonarCloud packages
uses: actions/cache@v3
with:
path: ~/.sonar/cache
key: ${{ runner.os }}-sonar
restore-keys: ${{ runner.os }}-sonar
- name: Cache Maven packages
uses: actions/cache@v3
with:
path: ~/.m2
key: ${{ runner.os }}-m2-${{ hashFiles('**/pom.xml') }}
restore-keys: ${{ runner.os }}-m2
- name: Extract Maven project version
run: |
echo "RELEASE_VERSION=$(mvn help:evaluate -Dexpression=project.version -q -DforceStdout)" >> $GITHUB_ENV
- name: Show extracted Maven project version
run: |
echo "RELEASE_VERSION: ${{ env.RELEASE_VERSION}}"
- name: Build and analyze
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
SONAR_TOKEN: ${{ secrets.SONAR_TOKEN }}
run: mvn -B -e -V clean package jacoco:report org.sonarsource.scanner.maven:sonar-maven-plugin:sonar
-Dmaven.test.redirectTestOutputToFile=false
-Djava.net.preferIPv4Stack=true
-Dsurefire.useFile=false
-DbuildVersion=${{ env.RELEASE_VERSION }}
-Dskip-sonarsource-repo=true
-Pjacoco -Djacoco.includes="org.ligoj.app.plugin.build.*"
-Dsonar.projectKey="org.ligoj.plugin:plugin-build"
-Dsonar.javascript.exclusions="node_modules,dist"
-Dsonar.host.url="https://sonarcloud.io"
-Dsonar.organization=ligoj-github
-Dsonar.projectVersion=${{ steps.version.outputs.version }}
-Dmaven.javadoc.skip=true
-Dmaven.ut.reuseForks=true -Dmaven.it.reuseForks=false
-Djava.awt.headless=true
31 changes: 0 additions & 31 deletions .travis.yml

This file was deleted.

38 changes: 0 additions & 38 deletions appveyor.yml

This file was deleted.

27 changes: 0 additions & 27 deletions circle.yml

This file was deleted.

68 changes: 34 additions & 34 deletions pom.xml
Original file line number Diff line number Diff line change
@@ -1,35 +1,35 @@
<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>
<parent>
<groupId>org.ligoj.api</groupId>
<artifactId>plugin-parent</artifactId>
<version>3.3.0</version>
<relativePath />
</parent>

<groupId>org.ligoj.plugin</groupId>
<artifactId>plugin-scm</artifactId>
<version>1.0.7-SNAPSHOT</version>
<packaging>jar</packaging>
<name>Ligoj - Plugin SCM</name>
<url>https://github.com/ligoj/plugin-scm</url>

<scm>
<connection>scm:git:https://github.com/ligoj/plugin-scm</connection>
<developerConnection>scm:git:https://github.com/ligoj/plugin-scm</developerConnection>
<url>https://github.com/ligoj/plugin-scm.git</url>
</scm>

<profiles>
<profile>
<id>github</id>
<distributionManagement>
<repository>
<id>github-ligoj</id>
<url>https://maven.pkg.github.com/ligoj/plugin-scm</url>
</repository>
</distributionManagement>
</profile>
</profiles>
<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>
<parent>
<groupId>org.ligoj.api</groupId>
<artifactId>plugin-parent</artifactId>
<version>4.0.0</version>
<relativePath />
</parent>

<groupId>org.ligoj.plugin</groupId>
<artifactId>plugin-scm</artifactId>
<version>1.1.0</version>
<packaging>jar</packaging>
<name>Ligoj - Plugin SCM</name>
<url>https://github.com/ligoj/plugin-scm</url>

<scm>
<connection>scm:git:https://github.com/ligoj/plugin-scm</connection>
<developerConnection>scm:git:https://github.com/ligoj/plugin-scm</developerConnection>
<url>https://github.com/ligoj/plugin-scm.git</url>
</scm>

<profiles>
<profile>
<id>github</id>
<distributionManagement>
<repository>
<id>github-ligoj</id>
<url>https://maven.pkg.github.com/ligoj/plugin-scm</url>
</repository>
</distributionManagement>
</profile>
</profiles>
</project>
153 changes: 0 additions & 153 deletions travis.sh

This file was deleted.

0 comments on commit baf59a2

Please sign in to comment.