Skip to content
This repository was archived by the owner on Apr 9, 2025. It is now read-only.

Commit 08be4b8

Browse files
author
Bernhard Bermeitinger
committed
initial commit
0 parents  commit 08be4b8

File tree

77 files changed

+6758
-0
lines changed

Some content is hidden

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

77 files changed

+6758
-0
lines changed

.gitignore

Lines changed: 175 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,175 @@
1+
2+
.idea/misc.xml
3+
.idea/dictionaries
4+
5+
# Created by https://www.gitignore.io/api/intellij,jetbrains,java,maven,eclipse
6+
7+
### Eclipse ###
8+
9+
.metadata
10+
bin/
11+
tmp/
12+
*.tmp
13+
*.bak
14+
*.swp
15+
*~.nib
16+
local.properties
17+
.settings/
18+
.loadpath
19+
.recommenders
20+
21+
# Eclipse Core
22+
.project
23+
24+
# External tool builders
25+
.externalToolBuilders/
26+
27+
# Locally stored "Eclipse launch configurations"
28+
*.launch
29+
30+
# PyDev specific (Python IDE for Eclipse)
31+
*.pydevproject
32+
33+
# CDT-specific (C/C++ Development Tooling)
34+
.cproject
35+
36+
# JDT-specific (Eclipse Java Development Tools)
37+
.classpath
38+
39+
# Java annotation processor (APT)
40+
.factorypath
41+
42+
# PDT-specific (PHP Development Tools)
43+
.buildpath
44+
45+
# sbteclipse plugin
46+
.target
47+
48+
# Tern plugin
49+
.tern-project
50+
51+
# TeXlipse plugin
52+
.texlipse
53+
54+
# STS (Spring Tool Suite)
55+
.springBeans
56+
57+
# Code Recommenders
58+
.recommenders/
59+
60+
### Intellij ###
61+
# Covers JetBrains IDEs: IntelliJ, RubyMine, PhpStorm, AppCode, PyCharm, CLion, Android Studio and Webstorm
62+
# Reference: https://intellij-support.jetbrains.com/hc/en-us/articles/206544839
63+
64+
# User-specific stuff:
65+
.idea/workspace.xml
66+
.idea/tasks.xml
67+
68+
# Sensitive or high-churn files:
69+
.idea/dataSources/
70+
.idea/dataSources.ids
71+
.idea/dataSources.xml
72+
.idea/dataSources.local.xml
73+
.idea/sqlDataSources.xml
74+
.idea/dynamic.xml
75+
.idea/uiDesigner.xml
76+
77+
# Gradle:
78+
.idea/gradle.xml
79+
.idea/libraries
80+
81+
# Mongo Explorer plugin:
82+
.idea/mongoSettings.xml
83+
84+
## File-based project format:
85+
*.iws
86+
87+
## Plugin-specific files:
88+
89+
# IntelliJ
90+
/out/
91+
92+
# mpeltonen/sbt-idea plugin
93+
.idea_modules/
94+
95+
# JIRA plugin
96+
atlassian-ide-plugin.xml
97+
98+
# Crashlytics plugin (for Android Studio and IntelliJ)
99+
com_crashlytics_export_strings.xml
100+
crashlytics.properties
101+
crashlytics-build.properties
102+
fabric.properties
103+
104+
### Intellij Patch ###
105+
# Comment Reason: https://github.com/joeblau/gitignore.io/issues/186#issuecomment-215987721
106+
107+
# *.iml
108+
# modules.xml
109+
# .idea/misc.xml
110+
# *.ipr
111+
112+
### Java ###
113+
*.class
114+
115+
# BlueJ files
116+
*.ctxt
117+
118+
# Mobile Tools for Java (J2ME)
119+
.mtj.tmp/
120+
121+
# Package Files #
122+
*.jar
123+
*.war
124+
*.ear
125+
126+
# virtual machine crash logs, see http://www.java.com/en/download/help/error_hotspot.xml
127+
hs_err_pid*
128+
129+
### JetBrains ###
130+
# Covers JetBrains IDEs: IntelliJ, RubyMine, PhpStorm, AppCode, PyCharm, CLion, Android Studio and Webstorm
131+
# Reference: https://intellij-support.jetbrains.com/hc/en-us/articles/206544839
132+
133+
# User-specific stuff:
134+
135+
# Sensitive or high-churn files:
136+
137+
# Gradle:
138+
139+
# Mongo Explorer plugin:
140+
141+
## File-based project format:
142+
143+
## Plugin-specific files:
144+
145+
# IntelliJ
146+
147+
# mpeltonen/sbt-idea plugin
148+
149+
# JIRA plugin
150+
151+
# Crashlytics plugin (for Android Studio and IntelliJ)
152+
153+
### JetBrains Patch ###
154+
# Comment Reason: https://github.com/joeblau/gitignore.io/issues/186#issuecomment-215987721
155+
156+
# *.iml
157+
# modules.xml
158+
# .idea/misc.xml
159+
# *.ipr
160+
161+
### Maven ###
162+
target/
163+
pom.xml.tag
164+
pom.xml.releaseBackup
165+
pom.xml.versionsBackup
166+
pom.xml.next
167+
release.properties
168+
dependency-reduced-pom.xml
169+
buildNumber.properties
170+
.mvn/timing.properties
171+
172+
# Exclude maven wrapper
173+
!/.mvn/wrapper/maven-wrapper.jar
174+
175+
# End of https://www.gitignore.io/api/intellij,jetbrains,java,maven,eclipse

.idea/compiler.xml

Lines changed: 16 additions & 0 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

.idea/copyright/Lambda___GPL_v3_.xml

Lines changed: 6 additions & 0 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

.idea/copyright/Lambda___MIT_.xml

Lines changed: 6 additions & 0 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

.idea/copyright/profiles_settings.xml

Lines changed: 3 additions & 0 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

.idea/encodings.xml

Lines changed: 6 additions & 0 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

.idea/inspectionProfiles/Project_Default.xml

Lines changed: 6 additions & 0 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

.idea/modules.xml

Lines changed: 8 additions & 0 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

.idea/vcs.xml

Lines changed: 6 additions & 0 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

.travis.yml

Lines changed: 10 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,10 @@
1+
language: java
2+
script: mvn test -B
3+
jdk: oraclejdk8
4+
5+
cache:
6+
directories:
7+
- $HOME/.m2
8+
9+
before_install:
10+
- ./install-SentenceSimplification.sh

0 commit comments

Comments
 (0)