diff --git a/pom.xml b/pom.xml index e9c9ccf9e81a674043b79e92177da6e2fa7b14c5..8df7a7508f6df037e772a102c32ccf4ded117c51 100644 --- a/pom.xml +++ b/pom.xml @@ -5,10 +5,90 @@ <artifactId>arsnova-war</artifactId> <version>2.0.0-SNAPSHOT</version> <packaging>war</packaging> + <properties> <org.springframework-version>3.1.2.RELEASE</org.springframework-version> <org.springframework.security-version>3.1.0.RELEASE</org.springframework.security-version> + <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding> + <project.url>https://scm.thm.de/arsnova</project.url> </properties> + + <developers> + <developer> + <name>Klaus Quibeldey-Cirkel</name> + <organization>Technische Hochschule Mittelhessen</organization> + <organizationUrl>http://www.thm.de</organizationUrl> + </developer> + <developer> + <name>Julian Hochstetter</name> + <organization>Technische Hochschule Mittelhessen</organization> + <organizationUrl>http://www.thm.de</organizationUrl> + </developer> + <developer> + <name>Jan Kammer</name> + <organization>Technische Hochschule Mittelhessen</organization> + <organizationUrl>http://www.thm.de</organizationUrl> + </developer> + <developer> + <name>Daniel Knapp</name> + <organization>Technische Hochschule Mittelhessen</organization> + <organizationUrl>http://www.thm.de</organizationUrl> + </developer> + <developer> + <name>Christoph Thelen</name> + <organization>Technische Hochschule Mittelhessen</organization> + <organizationUrl>http://www.thm.de</organizationUrl> + </developer> + <developer> + <name>Paul-Christian Volkmer</name> + <organization>Technische Hochschule Mittelhessen</organization> + <organizationUrl>http://www.thm.de</organizationUrl> + </developer> + </developers> + + <distributionManagement> + <site> + <id>website</id> + <url>https://arsnova.thm.de</url> + </site> + </distributionManagement> + + <issueManagement> + <system>Redmine</system> + <url>https://scm.thm.de/redmine/projects/arsnova2</url> + </issueManagement> + + <ciManagement> + <system>Jenkins</system> + <url>https://jenkins.mni.thm.de/jenkins/job/ARSnova-war/</url> + </ciManagement> + + <scm> + <url>https://scm.thm.de/arsnova/arsnova-war</url> + <connection>scm:git://scm.thm.de/arsnova/arsnova-war.git</connection> + <developerConnection>scm:ssh://gitorious@scm.thm.de/arsnova/arsnova-war.git</developerConnection> + </scm> + + <licenses> + <license> + <name>GNU General Public License v3.0 or later</name> + <url>http://www.gnu.org/licenses/gpl.txt</url> + </license> + </licenses> + + <reporting> + <plugins> + <plugin> + <groupId>org.apache.maven.plugins</groupId> + <artifactId>maven-project-info-reports-plugin</artifactId> + <version>2.4</version> + <configuration> + + </configuration> + </plugin> + </plugins> + </reporting> + <repositories> <repository> <id>thmrepo</id> @@ -31,6 +111,7 @@ <url>https://oss.sonatype.org/content/repositories/snapshots/</url> </repository> </repositories> + <dependencies> <dependency> <groupId>de.thm.arsnova</groupId> @@ -181,7 +262,21 @@ </configuration> --> </plugin> + <plugin> + <groupId>org.apache.maven.plugins</groupId> + <artifactId>maven-site-plugin</artifactId> + <version>3.1</version> + <configuration> + <locales>en</locales> + </configuration> + </plugin> </plugins> </build> + <name>ARSnova</name> + <description>ARSnova is a great audience response system</description> + <organization> + <name>Technische Hochschule Mittelhessen</name> + <url>http://www.thm.de</url> + </organization> </project> diff --git a/src/site/apt/index.apt b/src/site/apt/index.apt new file mode 100644 index 0000000000000000000000000000000000000000..2130873ce0a7d0d9f13c41fdd6841b0dfbbf7e7e --- /dev/null +++ b/src/site/apt/index.apt @@ -0,0 +1,22 @@ + ----- + ARSNova landingpage + ----- + SCM-Helpdesk + ----- + ----- + +ARSnova + + + Das Projekt ARSnova will neue Wege gehen, um auch in großen Veranstaltungen Feedback und Interaktion zwischen Auditorium und Lehrperson zu ermöglichen: ARS = Audience Response System. + + * {{{http://en.wikipedia.org/wiki/Audience_response}ARS bei Wikipedia}} + + * {{{https://scm.thm.de/redmine/documents/16}Präsentation über ARSnova}} + + * {{{https://ars.thm.de/download/}Desktop-Widget}} + + * {{{http://prezi.com/bkfz1utyaiiw/arsnova/}ARSnova auf Prezi}} + + ARSnova ist eine coole, kostenlose und ausbaufähige Open-Source-App, die als HTML5-App auf jedem Smartphone, Tablet-PC oder Laptop läuft. + diff --git a/src/site/resources/arsnova.png b/src/site/resources/arsnova.png new file mode 100644 index 0000000000000000000000000000000000000000..6d39185ff15bce763123846b32faae986ab3ce1b Binary files /dev/null and b/src/site/resources/arsnova.png differ diff --git a/src/site/resources/css/thm-theme.css b/src/site/resources/css/thm-theme.css new file mode 100644 index 0000000000000000000000000000000000000000..1385b917c47f433a86a3de834a9f81ddb259d8cd --- /dev/null +++ b/src/site/resources/css/thm-theme.css @@ -0,0 +1,9 @@ +@CHARSET "UTF-8"; + +.poweredBy { + display: none; +} + +#banner { + margin: 4px 0; +} \ No newline at end of file diff --git a/src/site/resources/thm_logo.png b/src/site/resources/thm_logo.png new file mode 100644 index 0000000000000000000000000000000000000000..e1ec5aadf512aab4d7795e959655efefcae92009 Binary files /dev/null and b/src/site/resources/thm_logo.png differ diff --git a/src/site/site.xml b/src/site/site.xml new file mode 100644 index 0000000000000000000000000000000000000000..2083090f9e177dfcb067550271a5fd26a4f49360 --- /dev/null +++ b/src/site/site.xml @@ -0,0 +1,60 @@ +<?xml version="1.0" encoding="ISO-8859-1"?> + +<project name="ARSNova" xmlns="http://maven.apache.org/DECORATION/1.0.0" + xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" + xsi:schemaLocation="http://maven.apache.org/DECORATION/1.0.0 http://maven.apache.org/xsd/decoration-1.0.0.xsd"> + + <skin> + <groupId>org.apache.maven.skins</groupId> + <artifactId>maven-fluido-skin</artifactId> + <version>1.2.1</version> + </skin> + + <custom> + <fluidoSkin> + <topBarEnabled>true</topBarEnabled> + <topBar> + + </topBar> + <sideBarEnabled>false</sideBarEnabled> + <profile>release</profile> + <ohloh> + <projectId>arsnova</projectId> + <widget>stats</widget> + </ohloh> + <facebookLike /> + <googlePlusOne /> + </fluidoSkin> + </custom> + + <bannerLeft> + <name>ARSNova</name> + <src>arsnova.png</src> + <href>http://ars.thm.de/</href> + </bannerLeft> + + <bannerRight> + <src>thm_logo.png</src> + </bannerRight> + + <body> + <head> + <link rel="stylesheet" type="text/css" href="css/thm-theme.css" /> + </head> + <links> + <item name="THM" href="http://www.thm.de/" /> + </links> + <menu name="Overview"> + <item name="Introduction" href="index.html" /> + <item name="Dependencies" href="dependencies.html" /> + <item name="The Team" href="team-list.html" /> + </menu> + <menu name="Further Information"> + <item name="Gitorious" href="https://scm.thm.de/arsnova" /> + <item name="Issue Tracking" href="issue-tracking.html" /> + <item name="Continuous Integration" href="integration.html" /> + <item name="Source Repository" href="source-repository.html" /> + </menu> + + </body> +</project>