Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
E
Enhort
Project
Project
Details
Activity
Releases
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Commits
Open sidebar
Michael Menzel
Enhort
Commits
fcbe2376
Commit
fcbe2376
authored
Oct 12, 2017
by
Michael Menzel
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
fixed configs
parent
fd185417
Changes
5
Hide whitespace changes
Inline
Side-by-side
Showing
5 changed files
with
740 additions
and
879 deletions
+740
-879
compiler.xml
.idea/compiler.xml
+2
-18
misc.xml
.idea/misc.xml
+1
-2
workspace.xml
.idea/workspace.xml
+718
-843
MultiGenBrowser.iml
MultiGenBrowser.iml
+1
-4
pom.xml
pom.xml
+18
-12
No files found.
.idea/compiler.xml
View file @
fcbe2376
...
...
@@ -5,32 +5,16 @@
<file
url=
"file://$PROJECT_DIR$/src/test/java/de/thm/genomeData/IntersectTest.java"
/>
<file
url=
"file://$PROJECT_DIR$/src/test/java/de/thm/genomeData/TrackTest.java"
/>
</excludeFromCompile>
<resourceExtensions
/>
<wildcardResourcePatterns>
<entry
name=
"!?*.java"
/>
<entry
name=
"!?*.form"
/>
<entry
name=
"!?*.class"
/>
<entry
name=
"!?*.groovy"
/>
<entry
name=
"!?*.scala"
/>
<entry
name=
"!?*.flex"
/>
<entry
name=
"!?*.kt"
/>
<entry
name=
"!?*.clj"
/>
<entry
name=
"!?*.aj"
/>
</wildcardResourcePatterns>
<annotationProcessing>
<profile
default=
"true"
name=
"Default"
enabled=
"false"
>
<processorPath
useClasspath=
"true"
/>
</profile>
<profile
default=
"false"
name=
"Maven default annotation processors profile"
enabled=
"true"
>
<profile
name=
"Maven default annotation processors profile"
enabled=
"true"
>
<sourceOutputDir
name=
"target/generated-sources/annotations"
/>
<sourceTestOutputDir
name=
"target/generated-test-sources/test-annotations"
/>
<outputRelativeToContentRoot
value=
"true"
/>
<processorPath
useClasspath=
"true"
/>
<module
name=
"MultiGenBrowser"
/>
</profile>
</annotationProcessing>
<bytecodeTargetLevel>
<module
name=
"MultiGenBrowser"
target=
"
1.
8"
/>
<module
name=
"MultiGenBrowser"
target=
"8"
/>
</bytecodeTargetLevel>
</component>
</project>
\ No newline at end of file
.idea/misc.xml
View file @
fcbe2376
<?xml version="1.0" encoding="UTF-8"?>
<project
version=
"4"
>
<component
name=
"EntryPointsManager"
>
<entry_points
version=
"2.0"
/>
<list
size=
"1"
>
<item
index=
"0"
class=
"java.lang.String"
itemvalue=
"org.springframework.stereotype.Controller"
/>
</list>
...
...
@@ -37,7 +36,7 @@
<component
name=
"ProjectKey"
>
<option
name=
"state"
value=
"project://e2804f05-5315-4fc6-a121-c522a6c26470"
/>
</component>
<component
name=
"ProjectRootManager"
version=
"2"
languageLevel=
"JDK_1_8"
default=
"false"
assert-keyword=
"true"
jdk-15=
"true"
project-jdk-name=
"1.8"
project-jdk-type=
"JavaSDK"
>
<component
name=
"ProjectRootManager"
version=
"2"
languageLevel=
"JDK_1_8"
default=
"false"
project-jdk-name=
"1.8"
project-jdk-type=
"JavaSDK"
>
<output
url=
"file://$PROJECT_DIR$/out"
/>
</component>
</project>
\ No newline at end of file
.idea/workspace.xml
View file @
fcbe2376
This source diff could not be displayed because it is too large. You can
view the blob
instead.
MultiGenBrowser.iml
View file @
fcbe2376
...
...
@@ -10,7 +10,7 @@
</configuration>
</facet>
</component>
<component
name=
"NewModuleRootManager"
LANGUAGE_LEVEL=
"JDK_1_
9
"
>
<component
name=
"NewModuleRootManager"
LANGUAGE_LEVEL=
"JDK_1_
8
"
>
<output
url=
"file://$MODULE_DIR$/target/classes"
/>
<output-test
url=
"file://$MODULE_DIR$/target/test-classes"
/>
<content
url=
"file://$MODULE_DIR$"
>
...
...
@@ -82,9 +82,6 @@
<orderEntry
type=
"library"
name=
"Maven: org.codehaus.groovy:groovy:2.4.11"
level=
"project"
/>
<orderEntry
type=
"library"
name=
"Maven: org.springframework.boot:spring-boot-starter-actuator:1.5.4.RELEASE"
level=
"project"
/>
<orderEntry
type=
"library"
name=
"Maven: org.springframework.boot:spring-boot-actuator:1.5.4.RELEASE"
level=
"project"
/>
<orderEntry
type=
"library"
name=
"Maven: net.sourceforge.nekohtml:nekohtml:1.9.21"
level=
"project"
/>
<orderEntry
type=
"library"
name=
"Maven: xerces:xercesImpl:2.10.0"
level=
"project"
/>
<orderEntry
type=
"library"
name=
"Maven: xml-apis:xml-apis:1.4.01"
level=
"project"
/>
<orderEntry
type=
"library"
name=
"Maven: org.xerial:sqlite-jdbc:3.20.0"
level=
"project"
/>
</component>
</module>
\ No newline at end of file
pom.xml
View file @
fcbe2376
...
...
@@ -28,14 +28,26 @@
<groupId>
org.apache.maven.plugins
</groupId>
<artifactId>
maven-compiler-plugin
</artifactId>
<configuration>
<source>
9
</source>
<target>
9
</target>
<source>
8
</source>
<target>
8
</target>
</configuration>
</plugin>
<plugin>
<groupId>
org.springframework.boot
</groupId>
<artifactId>
spring-boot-maven-plugin
</artifactId>
</plugin>
<plugin>
<groupId>
org.apache.maven.plugins
</groupId>
<artifactId>
maven-jar-plugin
</artifactId>
<configuration>
<archive>
<manifest>
<addClasspath>
true
</addClasspath>
<mainClass>
de.thm.run.BackendServer
</mainClass>
</manifest>
</archive>
</configuration>
</plugin>
<plugin>
<groupId>
org.springframework.boot
</groupId>
<artifactId>
spring-boot-maven-plugin
</artifactId>
</plugin>
</plugins>
</build>
...
...
@@ -103,12 +115,6 @@
<version>
1.5.4.RELEASE
</version>
</dependency>
<dependency>
<groupId>
net.sourceforge.nekohtml
</groupId>
<artifactId>
nekohtml
</artifactId>
<version>
1.9.21
</version>
</dependency>
<dependency>
<groupId>
org.xerial
</groupId>
<artifactId>
sqlite-jdbc
</artifactId>
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment