Skip to content

Commit

Permalink
Initial Commit
Browse files Browse the repository at this point in the history
  • Loading branch information
Stévan Le Meur committed Jan 10, 2014
0 parents commit 97e2038
Show file tree
Hide file tree
Showing 14 changed files with 114 additions and 0 deletions.
14 changes: 14 additions & 0 deletions pom.xml
Original file line number Diff line number Diff line change
@@ -0,0 +1,14 @@
<?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>${GROUP_ID}</groupId>
<artifactId>${ARTIFACT_ID}</artifactId>
<version>${VERSION}</version>

<properties>
<project.property>${PROJECT_VERSION}</project.property>
</properties>
</project>
14 changes: 14 additions & 0 deletions src/main/java/SuperClass.java
Original file line number Diff line number Diff line change
@@ -0,0 +1,14 @@
/**
* @author <a href="mailto:${AUTHOR_EMAIL}">${AUTHOR_NAME}</a>
* @version $Id: 16.12.13 ${AUTHOR} $
*/
public class SuperClass {
private static final String VARIABLE_1 = "${VARIABLE_1}";
private static final String VARIABLE_2 = "${VARIABLE_2}";
private static final String VARIABLE_3 = "${VARIABLE_3}";
private static final String VARIABLE_4 = "${VARIABLE_4}";
private static final String VARIABLE_5 = "${VARIABLE_5}";
private static final String VARIABLE_6 = "${VARIABLE_6}";
private static final String VARIABLE_7 = "${VARIABLE_7}";
private static final String VARIABLE_8 = "${VARIABLE_8}";
}
6 changes: 6 additions & 0 deletions src/main/java/Test1.java
Original file line number Diff line number Diff line change
@@ -0,0 +1,6 @@
/**
* @author <a href="mailto:${AUTHOR_EMAIL}">${AUTHOR_NAME}</a>
* @version $Id: 16.12.13 ${AUTHOR} $
*/
public class Test1 {
}
6 changes: 6 additions & 0 deletions src/main/java/Test2.java
Original file line number Diff line number Diff line change
@@ -0,0 +1,6 @@
/**
* @author <a href="mailto:${AUTHOR_EMAIL}">${AUTHOR_NAME}</a>
* @version $Id: 16.12.13 ${AUTHOR} $
*/
public class Test2 {
}
6 changes: 6 additions & 0 deletions src/main/java/Test3.java
Original file line number Diff line number Diff line change
@@ -0,0 +1,6 @@
/**
* @author <a href="mailto:${AUTHOR_EMAIL}">${AUTHOR_NAME}</a>
* @version $Id: 16.12.13 ${AUTHOR} $
*/
public class Test3 {
}
8 changes: 8 additions & 0 deletions src/main/java/awesome/TestClass.java
Original file line number Diff line number Diff line change
@@ -0,0 +1,8 @@
package awesome;

/**
* @author <a href="mailto:${AUTHOR_EMAIL}">${AUTHOR_NAME}</a>
* @version $Id: 16.12.13 ${AUTHOR} $
*/
public class TestClass {
}
9 changes: 9 additions & 0 deletions src/main/resources/inner/page-0.html
Original file line number Diff line number Diff line change
@@ -0,0 +1,9 @@
<!DOCTYPE html>
<html>
<head>
<title></title>
</head>
<body>

</body>
</html>
9 changes: 9 additions & 0 deletions src/main/resources/inner/page-1.html
Original file line number Diff line number Diff line change
@@ -0,0 +1,9 @@
<!DOCTYPE html>
<html>
<head>
<title></title>
</head>
<body>

</body>
</html>
9 changes: 9 additions & 0 deletions src/main/resources/inner/page-2.html
Original file line number Diff line number Diff line change
@@ -0,0 +1,9 @@
<!DOCTYPE html>
<html>
<head>
<title></title>
</head>
<body>

</body>
</html>
9 changes: 9 additions & 0 deletions src/main/resources/inner/some.html
Original file line number Diff line number Diff line change
@@ -0,0 +1,9 @@
<!DOCTYPE html>
<html>
<head>
<title></title>
</head>
<body>

</body>
</html>
9 changes: 9 additions & 0 deletions src/main/resources/page.html
Original file line number Diff line number Diff line change
@@ -0,0 +1,9 @@
<!DOCTYPE html>
<html>
<head>
<title>Author: ${AUTHOR}</title>
</head>
<body>

</body>
</html>
3 changes: 3 additions & 0 deletions src/main/resources/simple.js
Original file line number Diff line number Diff line change
@@ -0,0 +1,3 @@
/**
* Created by vlad on 16.12.13.
*/
6 changes: 6 additions & 0 deletions src/main/resources/xslStyle.xsl
Original file line number Diff line number Diff line change
@@ -0,0 +1,6 @@
<xsl:stylesheet version="1.0" xmlns:xsl="http://www.w3.org/1999/XSL/Transform">

<xsl:template match="/">
</xsl:template>

</xsl:stylesheet>
6 changes: 6 additions & 0 deletions src/test/java/SomeTestClass.java
Original file line number Diff line number Diff line change
@@ -0,0 +1,6 @@
/**
* @author <a href="mailto:[email protected]">Vladyslav Zhukovskii</a>
* @version $Id: 16.12.13 vlad $
*/
public class SomeTestClass {
}

0 comments on commit 97e2038

Please sign in to comment.