diff options
| author | Jonathan Bauer | 2014-09-11 15:05:44 +0200 |
|---|---|---|
| committer | Jonathan Bauer | 2014-09-11 15:05:44 +0200 |
| commit | a07f03ef57f9536e5c4ad27053cc324db2e8c1b3 (patch) | |
| tree | 90433950e0a800f8bf1bf2495ff8dd0f3db0584d | |
| parent | oops (diff) | |
| download | tutor-module-a07f03ef57f9536e5c4ad27053cc324db2e8c1b3.tar.gz tutor-module-a07f03ef57f9536e5c4ad27053cc324db2e8c1b3.tar.xz tutor-module-a07f03ef57f9536e5c4ad27053cc324db2e8c1b3.zip | |
master pom file for both subprojects
| -rw-r--r-- | pom.xml | 38 |
1 files changed, 38 insertions, 0 deletions
diff --git a/pom.xml b/pom.xml new file mode 100644 index 00000000..419cd119 --- /dev/null +++ b/pom.xml @@ -0,0 +1,38 @@ +<?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/xsd/maven-4.0.0.xsd"> + <modelVersion>4.0.0</modelVersion> + + <groupId>bwlehrpool</groupId> + <artifactId>bwsuite</artifactId> + <version>1.0-SNAPSHOT</version> + <packaging>pom</packaging> + + <name>bwSuite</name> + <url>http://google.de/</url> + + <modules> + <module>dozentenmodul</module> + <module>dozentenmodulserver</module> + </modules> + + <build> + <plugins> + <plugin> + <groupId>org.apache.maven.plugins</groupId> + <artifactId>maven-compiler-plugin</artifactId> + <version>3.1</version> + <configuration> + <source>1.7</source> + <target>1.7</target> + </configuration> + </plugin> + </plugins> + </build> + + <properties> + <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding> + </properties> + +</project> + |
