Skip to content

Commit 83a6d4d

Browse files
committed
Refactor of jvfs ad maven module fj-core-jvfs
1 parent e064f1f commit 83a6d4d

File tree

75 files changed

+334
-482
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

75 files changed

+334
-482
lines changed

fj-core-jvfs/pom.xml

Lines changed: 78 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,78 @@
1+
<project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
2+
xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
3+
<modelVersion>4.0.0</modelVersion>
4+
5+
<artifactId>fj-core-jvfs</artifactId>
6+
7+
<parent>
8+
<groupId>org.fugerit.java</groupId>
9+
<artifactId>fj-lib</artifactId>
10+
<version>0.8.6-jvfs4</version>
11+
</parent>
12+
13+
<name>fj-core-jvfs</name>
14+
<description>Fugerit Java Core Library for JDK 1.7 and up</description>
15+
<url>https://www.fugerit.org/perm/jupiter/</url>
16+
17+
<licenses>
18+
<license>
19+
<name>Apache License, Version 2.0</name>
20+
<url>http://www.apache.org/licenses/LICENSE-2.0.txt</url>
21+
<distribution>repo</distribution>
22+
</license>
23+
</licenses>
24+
25+
26+
<organization>
27+
<url>https://www.fugerit.org</url>
28+
<name>Fugerit</name>
29+
</organization>
30+
31+
<properties>
32+
<fj-daogen-version>0.4.5</fj-daogen-version>
33+
</properties>
34+
35+
<build>
36+
37+
</build>
38+
39+
<dependencies>
40+
41+
<dependency>
42+
<groupId>org.fugerit.java</groupId>
43+
<artifactId>fj-core</artifactId>
44+
</dependency>
45+
46+
<dependency>
47+
<groupId>org.apache.commons</groupId>
48+
<artifactId>commons-dbcp2</artifactId>
49+
</dependency>
50+
51+
<dependency>
52+
<groupId>org.fugerit.java</groupId>
53+
<artifactId>fj-test-helper8</artifactId>
54+
<scope>test</scope>
55+
<exclusions>
56+
<exclusion>
57+
<groupId>*</groupId>
58+
<artifactId>*</artifactId>
59+
</exclusion>
60+
</exclusions>
61+
</dependency>
62+
63+
<dependency>
64+
<groupId>org.fugerit.java</groupId>
65+
<artifactId>fj-daogen-base</artifactId>
66+
<version>${fj-daogen-version}</version>
67+
<scope>test</scope>
68+
</dependency>
69+
70+
</dependencies>
71+
72+
<profiles>
73+
74+
75+
76+
</profiles>
77+
78+
</project>

0 commit comments

Comments
 (0)