Skip to content

Commit 3307731

Browse files
committed
Merge tag 'learnlib-0.13.0'
[maven-release-plugin] copy for tag learnlib-0.13.0
2 parents ca17c61 + af54f4d commit 3307731

822 files changed

Lines changed: 47495 additions & 32383 deletions

File tree

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

.gitignore

Lines changed: 10 additions & 13 deletions
Original file line numberDiff line numberDiff line change
@@ -1,17 +1,14 @@
1+
# Maven output
2+
target/
3+
4+
# Eclipse output directory
5+
bin/
6+
7+
# Eclipse settings
18
.settings/
29
.classpath
3-
.idea/
410
.project
5-
hs_err_*
6-
*~
7-
*.iml
8-
pom.xml.versionsBackup
9-
test-output/
10-
importers/
11-
/target/
12-
.factorypath
13-
C:\\nppdf32Log\\debuglog.txt
14-
/release.properties
15-
pom.xml.releaseBackup
16-
1711

12+
#Intellij settings
13+
*.iml
14+
.idea/

.travis.yml

Lines changed: 30 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,30 @@
1+
language: java
2+
sudo: false
3+
dist: trusty
4+
jdk:
5+
- oraclejdk8
6+
- openjdk8
7+
# disable caching for now, because it breaks reporting to coveralls
8+
# see https://github.com/travis-ci/travis-ci/issues/8208#issuecomment-349240845
9+
#cache:
10+
# directories:
11+
# - $HOME/.m2
12+
#before_cache:
13+
# # do not cache our local archives
14+
# - rm -rf $HOME/.m2/repository/net/automatalib/
15+
# - rm -rf $HOME/.m2/repository/de/learnlib/
16+
branches:
17+
only:
18+
- master
19+
- develop
20+
before_install:
21+
- git clone -b develop --single-branch https://github.com/LearnLib/automatalib.git /tmp/automatalib-develop
22+
- pushd /tmp/automatalib-develop
23+
# skip several aspects of the build process, because we are only interested in the compiled code
24+
- mvn install -DskipTests -Dmaven.javadoc.skip=true
25+
- popd
26+
install: true # skip mvn install, because we essentially run the same command in the script routine
27+
script:
28+
- mvn install -B -Pintegration-tests,code-analysis,code-coverage,bundles
29+
after_success:
30+
- mvn coveralls:report

COPYING.txt

Lines changed: 0 additions & 165 deletions
This file was deleted.

0 commit comments

Comments
 (0)