Skip to content

Commit 08234b5

Browse files
authored
Merge pull request eugenp#5285 from eugenp/new-libraries-security-module
New libraries-security module
2 parents 8455646 + e8786d2 commit 08234b5

File tree

3 files changed

+45
-0
lines changed

3 files changed

+45
-0
lines changed

libraries-security/.gitignore

Lines changed: 14 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,14 @@
1+
*.class
2+
3+
#folders#
4+
/target
5+
/neoDb*
6+
/data
7+
/src/main/webapp/WEB-INF/classes
8+
*/META-INF/*
9+
10+
# Packaged files #
11+
*.jar
12+
*.war
13+
*.ear
14+
/bin/

libraries-security/pom.xml

Lines changed: 30 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,30 @@
1+
<?xml version="1.0" encoding="UTF-8"?>
2+
<project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
3+
xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
4+
<modelVersion>4.0.0</modelVersion>
5+
<artifactId>libraries-security</artifactId>
6+
<name>libraries-security</name>
7+
<packaging>jar</packaging>
8+
9+
<parent>
10+
<groupId>com.baeldung</groupId>
11+
<artifactId>parent-modules</artifactId>
12+
<version>1.0.0-SNAPSHOT</version>
13+
</parent>
14+
15+
<dependencies>
16+
17+
<dependency>
18+
<groupId>junit</groupId>
19+
<artifactId>junit</artifactId>
20+
<version>${junit.version}</version>
21+
<scope>test</scope>
22+
</dependency>
23+
24+
</dependencies>
25+
26+
<properties>
27+
<junit.version>4.12</junit.version>
28+
</properties>
29+
30+
</project>

pom.xml

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -408,6 +408,7 @@
408408
<!-- <module>jws</module> --><!-- POM jar version repo download failure -->
409409
<module>libraries</module>
410410
<module>libraries-data</module>
411+
<module>libraries-security</module>
411412
<module>libraries-server</module>
412413
<module>linkrest</module>
413414
<module>logging-modules/log-mdc</module>

0 commit comments

Comments
 (0)