Skip to content
GitLab
Menu
Projects
Groups
Snippets
Loading...
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
Menu
Open sidebar
clarind
wl-webservices
service-marmot
Commits
33061c17
Commit
33061c17
authored
Jun 27, 2017
by
Wei Qiu
Browse files
Reformat pom.xml, remove .settings
parent
895df2b6
Changes
4
Hide whitespace changes
Inline
Side-by-side
Showing
4 changed files
with
141 additions
and
156 deletions
+141
-156
.settings/org.eclipse.core.resources.prefs
.settings/org.eclipse.core.resources.prefs
+0
-6
.settings/org.eclipse.jdt.core.prefs
.settings/org.eclipse.jdt.core.prefs
+0
-5
.settings/org.eclipse.m2e.core.prefs
.settings/org.eclipse.m2e.core.prefs
+0
-4
pom.xml
pom.xml
+141
-141
No files found.
.settings/org.eclipse.core.resources.prefs
deleted
100644 → 0
View file @
895df2b6
eclipse.preferences.version=1
encoding//src/main/java=UTF-8
encoding//src/main/resources=UTF-8
encoding//src/test/java=UTF-8
encoding//src/test/resources=UTF-8
encoding/<project>=UTF-8
.settings/org.eclipse.jdt.core.prefs
deleted
100644 → 0
View file @
895df2b6
eclipse.preferences.version=1
org.eclipse.jdt.core.compiler.codegen.targetPlatform=1.8
org.eclipse.jdt.core.compiler.compliance=1.8
org.eclipse.jdt.core.compiler.problem.forbiddenReference=warning
org.eclipse.jdt.core.compiler.source=1.8
.settings/org.eclipse.m2e.core.prefs
deleted
100644 → 0
View file @
895df2b6
activeProfiles=
eclipse.preferences.version=1
resolveWorkspaceProjects=true
version=1
pom.xml
View file @
33061c17
<?xml version="1.0" encoding="UTF-8"?>
<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/maven-v4_0_0.xsd"
>
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/maven-v4_0_0.xsd"
>
<modelVersion>
4.0.0
</modelVersion>
<prerequisites>
<maven>
3.0.0
</maven>
</prerequisites>
<modelVersion>
4.0.0
</modelVersion>
<prerequisites>
<maven>
3.0.0
</maven>
</prerequisites>
<groupId>
de.tuebingen.uni.sfs.clarind
</groupId>
<artifactId>
service-marmot
</artifactId>
<version>
1.0-SNAPSHOT
</version>
<packaging>
jar
</packaging>
<groupId>
de.tuebingen.uni.sfs.clarind
</groupId>
<artifactId>
service-marmot
</artifactId>
<version>
1.0-SNAPSHOT
</version>
<packaging>
jar
</packaging>
<name>
marmot
</name>
<name>
marmot
</name>
<properties>
<project.build.sourceEncoding>
UTF-8
</project.build.sourceEncoding>
<project.reporting.outputEncoding>
UTF-8
</project.reporting.outputEncoding>
<dropwizard.version>
1.1.0
</dropwizard.version>
<mainClass>
de.tuebingen.uni.sfs.clarind.marmotApplication
</mainClass>
</properties>
<dependencyManagement>
<dependencies>
<dependency>
<groupId>
io.dropwizard
</groupId>
<artifactId>
dropwizard-bom
</artifactId>
<version>
${dropwizard.version}
</version>
<type>
pom
</type>
<scope>
import
</scope>
</dependency>
</dependencies>
</dependencyManagement>
<properties>
<project.build.sourceEncoding>
UTF-8
</project.build.sourceEncoding>
<project.reporting.outputEncoding>
UTF-8
</project.reporting.outputEncoding>
<dropwizard.version>
1.1.0
</dropwizard.version>
<mainClass>
de.tuebingen.uni.sfs.clarind.marmotApplication
</mainClass>
</properties>
<dependencyManagement>
<dependencies>
<dependency>
<groupId>
io.dropwizard
</groupId>
<artifactId>
dropwizard-core
</artifactId>
</dependency>
<dependency>
<groupId>
de.thomaskrille
</groupId>
<artifactId>
dropwizard-template-config
</artifactId>
<version>
1.5.0
</version>
</dependency>
<dependency>
<groupId>
eu.clarin.weblicht
</groupId>
<artifactId>
wlfxb
</artifactId>
<version>
1.3.3
</version>
</dependency>
</dependencies>
<dependency>
<groupId>
io.dropwizard
</groupId>
<artifactId>
dropwizard-bom
</artifactId>
<version>
${dropwizard.version}
</version>
<type>
pom
</type>
<scope>
import
</scope>
</dependency>
</dependencies>
</dependencyManagement>
<dependencies>
<dependency>
<groupId>
io.dropwizard
</groupId>
<artifactId>
dropwizard-core
</artifactId>
</dependency>
<dependency>
<groupId>
de.thomaskrille
</groupId>
<artifactId>
dropwizard-template-config
</artifactId>
<version>
1.5.0
</version>
</dependency>
<dependency>
<groupId>
eu.clarin.weblicht
</groupId>
<artifactId>
wlfxb
</artifactId>
<version>
1.3.3
</version>
</dependency>
</dependencies>
<build>
<plugins>
<plugin>
<artifactId>
maven-shade-plugin
</artifactId>
<version>
2.4.1
</version>
<configuration>
<createDependencyReducedPom>
true
</createDependencyReducedPom>
<transformers>
<transformer
implementation=
"org.apache.maven.plugins.shade.resource.ServicesResourceTransformer"
/>
<transformer
implementation=
"org.apache.maven.plugins.shade.resource.ManifestResourceTransformer"
>
<mainClass>
${mainClass}
</mainClass>
</transformer>
</transformers>
<!-- exclude signed Manifests -->
<filters>
<filter>
<artifact>
*:*
</artifact>
<excludes>
<exclude>
META-INF/*.SF
</exclude>
<exclude>
META-INF/*.DSA
</exclude>
<exclude>
META-INF/*.RSA
</exclude>
</excludes>
</filter>
</filters>
</configuration>
<executions>
<execution>
<phase>
package
</phase>
<goals>
<goal>
shade
</goal>
</goals>
</execution>
</executions>
</plugin>
<plugin>
<artifactId>
maven-jar-plugin
</artifactId>
<version>
2.6
</version>
<configuration>
<archive>
<manifest>
<addClasspath>
true
</addClasspath>
<mainClass>
${mainClass}
</mainClass>
</manifest>
</archive>
</configuration>
</plugin>
<plugin>
<artifactId>
maven-compiler-plugin
</artifactId>
<version>
3.6.1
</version>
<configuration>
<source>
1.8
</source>
<target>
1.8
</target>
</configuration>
</plugin>
<plugin>
<artifactId>
maven-source-plugin
</artifactId>
<version>
2.4
</version>
<executions>
<execution>
<id>
attach-sources
</id>
<goals>
<goal>
jar
</goal>
</goals>
</execution>
</executions>
</plugin>
<plugin>
<artifactId>
maven-javadoc-plugin
</artifactId>
<version>
2.10.3
</version>
<executions>
<execution>
<id>
attach-javadocs
</id>
<goals>
<goal>
jar
</goal>
</goals>
</execution>
</executions>
</plugin>
</plugins>
</build>
<build>
<plugins>
<plugin>
<artifactId>
maven-shade-plugin
</artifactId>
<version>
2.4.1
</version>
<configuration>
<createDependencyReducedPom>
true
</createDependencyReducedPom>
<transformers>
<transformer
implementation=
"org.apache.maven.plugins.shade.resource.ServicesResourceTransformer"
/>
<transformer
implementation=
"org.apache.maven.plugins.shade.resource.ManifestResourceTransformer"
>
<mainClass>
${mainClass}
</mainClass>
</transformer>
</transformers>
<!-- exclude signed Manifests -->
<filters>
<filter>
<artifact>
*:*
</artifact>
<excludes>
<exclude>
META-INF/*.SF
</exclude>
<exclude>
META-INF/*.DSA
</exclude>
<exclude>
META-INF/*.RSA
</exclude>
</excludes>
</filter>
</filters>
</configuration>
<executions>
<execution>
<phase>
package
</phase>
<goals>
<goal>
shade
</goal>
</goals>
</execution>
</executions>
</plugin>
<plugin>
<artifactId>
maven-jar-plugin
</artifactId>
<version>
2.6
</version>
<configuration>
<archive>
<manifest>
<addClasspath>
true
</addClasspath>
<mainClass>
${mainClass}
</mainClass>
</manifest>
</archive>
</configuration>
</plugin>
<plugin>
<artifactId>
maven-compiler-plugin
</artifactId>
<version>
3.6.1
</version>
<configuration>
<source>
1.8
</source>
<target>
1.8
</target>
</configuration>
</plugin>
<plugin>
<artifactId>
maven-source-plugin
</artifactId>
<version>
2.4
</version>
<executions>
<execution>
<id>
attach-sources
</id>
<goals>
<goal>
jar
</goal>
</goals>
</execution>
</executions>
</plugin>
<plugin>
<artifactId>
maven-javadoc-plugin
</artifactId>
<version>
2.10.3
</version>
<executions>
<execution>
<id>
attach-javadocs
</id>
<goals>
<goal>
jar
</goal>
</goals>
</execution>
</executions>
</plugin>
</plugins>
</build>
<reporting>
<plugins>
<plugin>
<artifactId>
maven-project-info-reports-plugin
</artifactId>
<version>
2.8.1
</version>
<configuration>
<dependencyLocationsEnabled>
false
</dependencyLocationsEnabled>
<dependencyDetailsEnabled>
false
</dependencyDetailsEnabled>
</configuration>
</plugin>
<plugin>
<artifactId>
maven-javadoc-plugin
</artifactId>
<version>
2.10.3
</version>
</plugin>
</plugins>
</reporting>
<reporting>
<plugins>
<plugin>
<artifactId>
maven-project-info-reports-plugin
</artifactId>
<version>
2.8.1
</version>
<configuration>
<dependencyLocationsEnabled>
false
</dependencyLocationsEnabled>
<dependencyDetailsEnabled>
false
</dependencyDetailsEnabled>
</configuration>
</plugin>
<plugin>
<artifactId>
maven-javadoc-plugin
</artifactId>
<version>
2.10.3
</version>
</plugin>
</plugins>
</reporting>
</project>
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