Skip to content

use GitHub actions for build instead of Travis CI and Azure DevOp #242 #243

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

Open
wants to merge 2 commits into
base: main
Choose a base branch
from
Open
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
32 changes: 32 additions & 0 deletions .github/workflows/maven.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,32 @@
# This workflow will build a Java project with Maven, and cache/restore any dependencies to improve the workflow execution time
# For more information see: https://help.github.com/actions/language-and-framework-guides/building-and-testing-java-with-maven

name: Maven

on:
push:
branches: [ main ]
pull_request:
branches: [ main ]

jobs:
build:
strategy:
fail-fast: false
matrix:
java: [ 8, 11 ]
target-platform: ['Eclipse-4.8', 'Eclipse-2019-06', 'Eclipse-2019-09', 'Eclipse-2019-12']
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- name: Set up JDK 11
uses: actions/setup-java@v2
with:
distribution: 'temurin'
java-package: jdk
java-version: ${{ matrix.java }}
cache: maven
- name: Build eclox
run: cd eclox.root && mvn -Dtarget.platform=${{ matrix.target-platform }} clean verify
- name: Build eclox.doxygen
run: cd eclox.doxygen.root && mvn -Dtarget.platform=${{ matrix.target-platform }} clean verify
21 changes: 0 additions & 21 deletions .travis.yml

This file was deleted.

2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
# eclox [![Version](https://img.shields.io/github/release/anb0s/eclox.svg)](https://github.com/anb0s/eclox/releases) [![Issues](https://img.shields.io/github/issues/anb0s/eclox.svg)](https://github.com/anb0s/eclox/issues) [![Build Status](https://app.travis-ci.com/anb0s/eclox.svg?branch=main)](https://app.travis-ci.com/anb0s/eclox) [![License](https://img.shields.io/badge/License-EPL%202.0-blue.svg)](https://www.eclipse.org/legal/epl-2.0)
# eclox [![Version](https://img.shields.io/github/release/anb0s/eclox.svg)](https://github.com/anb0s/eclox/releases) [![Issues](https://img.shields.io/github/issues/anb0s/eclox.svg)](https://github.com/anb0s/eclox/issues) [![build](https://github.com/anb0s/eclox/actions/workflows/maven.yml/badge.svg)](https://github.com/anb0s/eclox/actions/workflows/maven.yml) [![License](https://img.shields.io/badge/License-EPL%202.0-blue.svg)](https://www.eclipse.org/legal/epl-2.0)

Eclox is a simple [Doxygen](http://www.doxygen.nl) frontend plug-in for [Eclipse](http://www.eclipse.org). It aims to provide a slim and sleek integration of the code documentation process into Eclipse.

Expand Down
2 changes: 1 addition & 1 deletion eclox.branding/META-INF/MANIFEST.MF
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@ Manifest-Version: 1.0
Bundle-ManifestVersion: 2
Bundle-Name: Eclox Branding Information
Bundle-SymbolicName: org.gna.eclox.branding;singleton:=true
Bundle-Version: 0.13.0.qualifier
Bundle-Version: 1.0.0.qualifier
Bundle-Vendor: Andre Bossert
Bundle-Localization:
Bundle-ClassPath: target/eclox-branding-lib.jar
Expand Down
2 changes: 1 addition & 1 deletion eclox.branding/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@
<parent>
<groupId>org.gna.eclox.group</groupId>
<artifactId>org.gna.eclox.releng</artifactId>
<version>0.13.0-SNAPSHOT</version>
<version>1.0.0-SNAPSHOT</version>
<relativePath>../eclox.releng</relativePath>
</parent>

Expand Down
2 changes: 1 addition & 1 deletion eclox.core/META-INF/MANIFEST.MF
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@ Manifest-Version: 1.0
Bundle-ManifestVersion: 2
Bundle-Name: Eclox Core
Bundle-SymbolicName: org.gna.eclox.core; singleton:=true
Bundle-Version: 0.13.0.qualifier
Bundle-Version: 1.0.0.qualifier
Bundle-Vendor: Andre Bossert
Bundle-Localization:
Require-Bundle: org.eclipse.core.resources,
Expand Down
2 changes: 1 addition & 1 deletion eclox.core/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@
<parent>
<groupId>org.gna.eclox.group</groupId>
<artifactId>org.gna.eclox.releng</artifactId>
<version>0.13.0-SNAPSHOT</version>
<version>1.0.0-SNAPSHOT</version>
<relativePath>../eclox.releng</relativePath>
</parent>

Expand Down
2 changes: 1 addition & 1 deletion eclox.feature/feature.xml
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
<feature
id="org.gna.eclox.feature"
label="Eclox"
version="0.13.0.qualifier"
version="1.0.0.qualifier"
provider-name="Andre Bossert"
plugin="org.gna.eclox.branding"
exclusive="true">
Expand Down
2 changes: 1 addition & 1 deletion eclox.feature/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@
<parent>
<groupId>org.gna.eclox.group</groupId>
<artifactId>org.gna.eclox.releng</artifactId>
<version>0.13.0-SNAPSHOT</version>
<version>1.0.0-SNAPSHOT</version>
<relativePath>../eclox.releng</relativePath>
</parent>

Expand Down
2 changes: 1 addition & 1 deletion eclox.help/META-INF/MANIFEST.MF
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@ Manifest-Version: 1.0
Bundle-ManifestVersion: 2
Bundle-Name: Eclox Help Plug-in
Bundle-SymbolicName: org.gna.eclox.help; singleton:=true
Bundle-Version: 0.13.0.qualifier
Bundle-Version: 1.0.0.qualifier
Bundle-Vendor: Andre Bossert
Bundle-Localization:
Bundle-RequiredExecutionEnvironment: JavaSE-1.8
Expand Down
2 changes: 1 addition & 1 deletion eclox.help/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@
<parent>
<groupId>org.gna.eclox.group</groupId>
<artifactId>org.gna.eclox.releng</artifactId>
<version>0.13.0-SNAPSHOT</version>
<version>1.0.0-SNAPSHOT</version>
<relativePath>../eclox.releng</relativePath>
</parent>

Expand Down
2 changes: 1 addition & 1 deletion eclox.platform/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@
<parent>
<groupId>org.gna.eclox.group</groupId>
<artifactId>org.gna.eclox.releng</artifactId>
<version>0.13.0-SNAPSHOT</version>
<version>1.0.0-SNAPSHOT</version>
<relativePath>../eclox.releng</relativePath>
</parent>

Expand Down
4 changes: 2 additions & 2 deletions eclox.releng/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@
<modelVersion>4.0.0</modelVersion>

<artifactId>org.gna.eclox.releng</artifactId>
<version>0.13.0-SNAPSHOT</version>
<version>1.0.0-SNAPSHOT</version>
<packaging>pom</packaging>
<name>Eclox Releng</name>

Expand All @@ -27,7 +27,7 @@
</modules>

<properties>
<new.version>0.13.0-SNAPSHOT</new.version>
<new.version>1.0.0-SNAPSHOT</new.version>
</properties>

<build>
Expand Down
2 changes: 1 addition & 1 deletion eclox.site/category.xml
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
<description name="Eclox Update Site" url="http://anb0s.github.io/eclox">
This is the official eclox&apos;s update site.
</description>
<feature url="features/org.gna.eclox.feature_0.13.0.qualifier.jar" id="org.gna.eclox.feature" version="0.13.0.qualifier">
<feature url="features/org.gna.eclox.feature_1.0.0.qualifier.jar" id="org.gna.eclox.feature" version="1.0.0.qualifier">
<category name="Eclox-0.13"/>
</feature>
<category-def name="Eclox-0.13" label="Eclox 0.13">
Expand Down
2 changes: 1 addition & 1 deletion eclox.site/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@
<parent>
<groupId>org.gna.eclox.group</groupId>
<artifactId>org.gna.eclox.releng</artifactId>
<version>0.13.0-SNAPSHOT</version>
<version>1.0.0-SNAPSHOT</version>
<relativePath>../eclox.releng</relativePath>
</parent>

Expand Down
2 changes: 1 addition & 1 deletion eclox.ui/META-INF/MANIFEST.MF
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@ Manifest-Version: 1.0
Bundle-ManifestVersion: 2
Bundle-Name: Eclox User Interface
Bundle-SymbolicName: org.gna.eclox.ui; singleton:=true
Bundle-Version: 0.13.0.qualifier
Bundle-Version: 1.0.0.qualifier
Bundle-Activator: eclox.ui.Plugin
Bundle-Vendor: Andre Bossert
Bundle-Localization:
Expand Down
2 changes: 1 addition & 1 deletion eclox.ui/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@
<parent>
<groupId>org.gna.eclox.group</groupId>
<artifactId>org.gna.eclox.releng</artifactId>
<version>0.13.0-SNAPSHOT</version>
<version>1.0.0-SNAPSHOT</version>
<relativePath>../eclox.releng</relativePath>
</parent>

Expand Down