Skip to content

Commit d16920d

Browse files
initial commit
1 parent d3bb881 commit d16920d

File tree

26 files changed

+1069
-225
lines changed

26 files changed

+1069
-225
lines changed

.gitignore

Lines changed: 6 additions & 22 deletions
Original file line numberDiff line numberDiff line change
@@ -1,22 +1,6 @@
1-
# Compiled class file
2-
*.class
3-
4-
# Log file
5-
*.log
6-
7-
# BlueJ files
8-
*.ctxt
9-
10-
# Mobile Tools for Java (J2ME)
11-
.mtj.tmp/
12-
13-
# Package Files #
14-
*.jar
15-
*.war
16-
*.ear
17-
*.zip
18-
*.tar.gz
19-
*.rar
20-
21-
# virtual machine crash logs, see http://www.java.com/en/download/help/error_hotspot.xml
22-
hs_err_pid*
1+
/target/
2+
/wicket-pwnedpasswords-validator.iml
3+
/.project
4+
/.settings
5+
/.classpath
6+
/.idea

Jenkinsfile

Whitespace-only changes.

LICENSE

Lines changed: 0 additions & 201 deletions
This file was deleted.

README.md

Lines changed: 0 additions & 2 deletions
This file was deleted.

pom.xml

Lines changed: 154 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,154 @@
1+
<?xml version="1.0" encoding="UTF-8"?>
2+
<!--
3+
Licensed to the Apache Software Foundation (ASF) under one or more
4+
contributor license agreements. See the NOTICE file distributed with
5+
this work for additional information regarding copyright ownership.
6+
The ASF licenses this file to You under the Apache License, Version 2.0
7+
(the "License"); you may not use this file except in compliance with
8+
the License. You may obtain a copy of the License at
9+
10+
http://www.apache.org/licenses/LICENSE-2.0
11+
12+
Unless required by applicable law or agreed to in writing, software
13+
distributed under the License is distributed on an "AS IS" BASIS,
14+
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
15+
See the License for the specific language governing permissions and
16+
limitations under the License.
17+
-->
18+
<project xmlns="http://maven.apache.org/POM/4.0.0"
19+
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
20+
xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/maven-v4_0_0.xsd">
21+
22+
<modelVersion>4.0.0</modelVersion>
23+
<groupId>de.martinspielmann.wicket</groupId>
24+
<artifactId>wicket-pwnedpasswords-validator</artifactId>
25+
<packaging>jar</packaging>
26+
<version>1.0.0-SNAPSHOT</version>
27+
<name>wicket-pwnedpasswords-validator</name>
28+
<description></description>
29+
<licenses>
30+
<license>
31+
<name>The Apache Software License, Version 2.0</name>
32+
<url>http://www.apache.org/licenses/LICENSE-2.0.txt</url>
33+
<distribution>repo</distribution>
34+
</license>
35+
</licenses>
36+
<properties>
37+
<wicket.version>7.10.0</wicket.version>
38+
<jetty9.version>9.2.19.v20160908</jetty9.version>
39+
<log4j.version>2.6.2</log4j.version>
40+
<junit.version>4.12</junit.version>
41+
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
42+
<!-- allowed values: R7, 1.0, 1.5, 2.0 or none -->
43+
<wtp.version>none</wtp.version>
44+
</properties>
45+
<dependencies>
46+
<!-- WICKET DEPENDENCIES -->
47+
<dependency>
48+
<groupId>org.apache.wicket</groupId>
49+
<artifactId>wicket-core</artifactId>
50+
<version>${wicket.version}</version>
51+
</dependency>
52+
53+
<!-- JUNIT DEPENDENCY FOR TESTING -->
54+
<dependency>
55+
<groupId>junit</groupId>
56+
<artifactId>junit</artifactId>
57+
<version>${junit.version}</version>
58+
<scope>test</scope>
59+
</dependency>
60+
61+
<!-- JETTY DEPENDENCIES FOR TESTING -->
62+
<dependency>
63+
<groupId>org.eclipse.jetty.aggregate</groupId>
64+
<artifactId>jetty-all</artifactId>
65+
<version>${jetty9.version}</version>
66+
<scope>test</scope>
67+
</dependency>
68+
</dependencies>
69+
<build>
70+
<resources>
71+
<resource>
72+
<filtering>false</filtering>
73+
<directory>src/main/resources</directory>
74+
</resource>
75+
<resource>
76+
<filtering>false</filtering>
77+
<directory>src/main/java</directory>
78+
<includes>
79+
<include>**</include>
80+
</includes>
81+
<excludes>
82+
<exclude>**/*.java</exclude>
83+
</excludes>
84+
</resource>
85+
</resources>
86+
<testResources>
87+
<testResource>
88+
<filtering>false</filtering>
89+
<directory>src/test/resources</directory>
90+
</testResource>
91+
<testResource>
92+
<filtering>false</filtering>
93+
<directory>src/test/java</directory>
94+
<includes>
95+
<include>**</include>
96+
</includes>
97+
<excludes>
98+
<exclude>**/*.java</exclude>
99+
</excludes>
100+
</testResource>
101+
</testResources>
102+
<plugins>
103+
<plugin>
104+
<inherited>true</inherited>
105+
<groupId>org.apache.maven.plugins</groupId>
106+
<artifactId>maven-compiler-plugin</artifactId>
107+
<version>3.1</version>
108+
<configuration>
109+
<source>1.7</source>
110+
<target>1.7</target>
111+
<encoding>UTF-8</encoding>
112+
<showWarnings>true</showWarnings>
113+
<showDeprecation>true</showDeprecation>
114+
</configuration>
115+
</plugin>
116+
<plugin>
117+
<groupId>org.eclipse.jetty</groupId>
118+
<artifactId>jetty-maven-plugin</artifactId>
119+
<version>${jetty9.version}</version>
120+
<configuration>
121+
<systemProperties>
122+
<systemProperty>
123+
<name>maven.project.build.directory.test-classes</name>
124+
<value>${project.build.directory}/test-classes</value>
125+
</systemProperty>
126+
</systemProperties>
127+
<jettyXml>${project.basedir}/src/test/jetty/jetty.xml,${project.basedir}/src/test/jetty/jetty-ssl.xml,${project.basedir}/src/test/jetty/jetty-http.xml,${project.basedir}/src/test/jetty/jetty-https.xml</jettyXml>
128+
</configuration>
129+
</plugin>
130+
<plugin>
131+
<groupId>org.apache.maven.plugins</groupId>
132+
<artifactId>maven-eclipse-plugin</artifactId>
133+
<version>2.9</version>
134+
<configuration>
135+
<downloadSources>true</downloadSources>
136+
<wtpversion>${wtp.version}</wtpversion>
137+
</configuration>
138+
</plugin>
139+
</plugins>
140+
</build>
141+
142+
<repositories>
143+
<repository>
144+
<id>Apache Nexus</id>
145+
<url>https://repository.apache.org/content/repositories/snapshots/</url>
146+
<releases>
147+
<enabled>false</enabled>
148+
</releases>
149+
<snapshots>
150+
<enabled>true</enabled>
151+
</snapshots>
152+
</repository>
153+
</repositories>
154+
</project>

0 commit comments

Comments
 (0)