Skip to content

Commit 9844f6c

Browse files
committed
Switch to Travis CI
1 parent c4d8348 commit 9844f6c

File tree

5 files changed

+49
-3
lines changed

5 files changed

+49
-3
lines changed

.travis.yml

+17
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,17 @@
1+
language: java
2+
jdk: oraclejdk8
3+
branches:
4+
only:
5+
- master
6+
- "/.*-[0-9]+\\..*/"
7+
install: true
8+
script: ".travis/build.sh"
9+
cache:
10+
directories:
11+
- "~/.m2/repository"
12+
env:
13+
global:
14+
- secure: LgFRrGYsdq5T+RGWA5BPQaxSHbm4AqhxNPoZ24BU5jthOrbquvivT9EXngrpv/nVjCW49eTecrZ7siG5vVZXW8UQoHRLO40h6z6nT9jIfEaPVsR6UZVEyOBw1WOn6XqdSeeB1ert4ocrt+edOYiw3wklO0vPe+Qp/lJyxKksIWY=
15+
- secure: IhCVYAYRiruvpjlmQQ+TIsYbf2UNZEQmu7Q87e6WmF17dWz9S8QR7zoATvwVGaBQxb2ivxP86wPHh1y/rkh3HGOPFpDzoT2iOykkCcCU1nTzLm13xva7OIe/RvLt4cTXnNZc4F6EW/+rZk7ob8K3V+RXEnILi1ipzY5ekdnRycA=
16+
- secure: NHFSMWVHsKSlntvA7tS/PsHKbx/csNB/koj8dZkEGkOMEDHoJrjn1HJtcC03rSmZB/4Qbctj3ksiW+o85GKxVDZg6gptJwFdCH0CHyRwS1EUzW+9dVEWr2yGCLMNQQuoAs1BDSZURY+7AvZyDRVqMKdAknTFYJ00XPSXIcaWGOI=
17+
- secure: YbJ5VJQ31Qeq0ijjPbDhwgjBnbyKzFFIaflIGCdGo7RVtNvXV1myfgLz62RqxLFnfehjcEMILrM5eI98EvgGOW6tEua3Y3c3/XKzjqxKwPRfSQG8V255vKtgfSjz/X+a0a/RXp7o2XVT1l6t8QVku3tfemo+sKxbdGhhSO5kUqo=

.travis/build.sh

+3
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,3 @@
1+
#!/bin/sh
2+
curl -fsLO https://raw.githubusercontent.com/scijava/scijava-scripts/master/travis-build.sh
3+
sh travis-build.sh

BAR/pom.xml

+2-2
Original file line numberDiff line numberDiff line change
@@ -88,8 +88,8 @@
8888
<url>https://github.com/tferr/Scripts/issues</url>
8989
</issueManagement>
9090
<ciManagement>
91-
<system>None</system>
92-
<url>http://jenkins.imagej.net/job/BAR/</url>
91+
<system>Travis CI</system>
92+
<url>https://travis-ci.org/tferr/Scripts</url>
9393
</ciManagement>
9494

9595
<properties>

README.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
[![DOI](https://zenodo.org/badge/8709403.svg)](https://zenodo.org/badge/latestdoi/8709403)
44
[![Latest Release](https://img.shields.io/github/release/tferr/Scripts.svg?style=flat-square)](https://github.com/tferr/Scripts/releases)
55
[![Issues](https://img.shields.io/github/issues/tferr/Scripts.svg?style=flat-square)](https://github.com/tferr/Scripts/issues)
6-
[![Jenkins](http://img.shields.io/jenkins/s/http/jenkins.imagej.net/BAR.svg?style=flat-square)](http://jenkins.imagej.net/job/BAR)
6+
[![Travis](https://travis-ci.org/tferr/Scripts.svg?branch=master)](https://travis-ci.org/tferr/Scripts)
77
[![GPL License](http://img.shields.io/badge/license-GPL-blue.svg?style=flat-square)](http://opensource.org/licenses/GPL-3.0)
88

99
Welcome to the **IJ BAR**: A collection of <b>B</b>roadly <b>A</b>pplicable <b>R</b>outines

pom.xml

+26
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,26 @@
1+
<?xml version="1.0" encoding="UTF-8"?>
2+
<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">
3+
<modelVersion>4.0.0</modelVersion>
4+
5+
<parent>
6+
<groupId>org.scijava</groupId>
7+
<artifactId>pom-scijava</artifactId>
8+
<version>19.2.0</version>
9+
<relativePath />
10+
</parent>
11+
12+
<groupId>com.github.tferr</groupId>
13+
<artifactId>Scripts-aggregator</artifactId>
14+
<version>0.0.0</version>
15+
<packaging>pom</packaging>
16+
17+
<properties>
18+
<deploy.skip>true</deploy.skip>
19+
<maven.install.skip>true</maven.install.skip>
20+
<enforcer.skip>true</enforcer.skip>
21+
</properties>
22+
23+
<modules>
24+
<module>BAR</module>
25+
</modules>
26+
</project>

0 commit comments

Comments
 (0)