Skip to content

Commit 9f1830a

Browse files
committed
Inception of the project: create a jackrabbit rar customized for Silverpeas
0 parents  commit 9f1830a

File tree

8 files changed

+2055
-0
lines changed

8 files changed

+2055
-0
lines changed

.gitignore

+12
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,12 @@
1+
.idea
2+
*.iws
3+
*.ipr
4+
*.iml
5+
*.merge*
6+
catalog.xml
7+
target
8+
.settings
9+
.classpath
10+
.project
11+
nbactions.xml
12+
nb-configuration.xml

README.MD

+11
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,11 @@
1+
The Jackrabbit JCA Resource Adapter adapted to Silverpeas.
2+
3+
This is the JCA Resource Adapter component of the Apache Jackrabbit project,
4+
adapted to be used within the execution context of the Silverpeas
5+
Collaborative Platform.
6+
This component packages the Jackrabbit content repository as a JCA 1.0 resource
7+
adapter. The packaged adapter can be deployed on a wide range of application
8+
servers.
9+
10+
The Jackrabbit content repository embedded in the JCA package is started when
11+
first accessed and shut down when the adapter is un- or re-deployed.

pom.xml

+194
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,194 @@
1+
<?xml version="1.0" encoding="UTF-8"?>
2+
3+
<!--
4+
Licensed to the Apache Software Foundation (ASF) under one or more
5+
contributor license agreements. See the NOTICE file distributed with
6+
this work for additional information regarding copyright ownership.
7+
The ASF licenses this file to You under the Apache License, Version 2.0
8+
(the "License"); you may not use this file except in compliance with
9+
the License. You may obtain a copy of the License at
10+
11+
http://www.apache.org/licenses/LICENSE-2.0
12+
13+
Unless required by applicable law or agreed to in writing, software
14+
distributed under the License is distributed on an "AS IS" BASIS,
15+
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
16+
See the License for the specific language governing permissions and
17+
limitations under the License.
18+
-->
19+
20+
<project xmlns="http://maven.apache.org/POM/4.0.0"
21+
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
22+
xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/maven-v4_0_0.xsd ">
23+
<modelVersion>4.0.0</modelVersion>
24+
25+
<groupId>org.apache</groupId>
26+
<artifactId>jackrabbit-jca</artifactId>
27+
<packaging>rar</packaging>
28+
<version>2.8.0</version>
29+
<name>Jackrabbit JCA Resource Adapter</name>
30+
<url>http://www.silverpeas.org</url>
31+
32+
<repositories>
33+
<repository>
34+
<id>Silverpeas</id>
35+
<layout>default</layout>
36+
<name>Silverpeas Repository</name>
37+
<url>http://www.silverpeas.org/nexus/content/groups/silverpeas</url>
38+
<releases>
39+
<enabled>true</enabled>
40+
</releases>
41+
<snapshots>
42+
<enabled>true</enabled>
43+
</snapshots>
44+
</repository>
45+
</repositories>
46+
47+
<pluginRepositories>
48+
<pluginRepository>
49+
<id>Silverpeas</id>
50+
<layout>default</layout>
51+
<name>Silverpeas Repository</name>
52+
<url>http://www.silverpeas.org/nexus/content/groups/silverpeas</url>
53+
<releases>
54+
<enabled>true</enabled>
55+
</releases>
56+
<snapshots>
57+
<enabled>true</enabled>
58+
</snapshots>
59+
</pluginRepository>
60+
</pluginRepositories>
61+
62+
<distributionManagement>
63+
<repository>
64+
<id>silverpeas</id>
65+
<name>Repository Silverpeas</name>
66+
<layout>default</layout>
67+
<url>http://www.silverpeas.org/nexus/content/repositories/releases/</url>
68+
</repository>
69+
<snapshotRepository>
70+
<id>silverpeas-snapshots</id>
71+
<name>Snapshots Repository Silverpeas</name>
72+
<layout>default</layout>
73+
<url>http://www.silverpeas.org/nexus/content/repositories/snapshots/</url>
74+
</snapshotRepository>
75+
</distributionManagement>
76+
77+
<properties>
78+
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
79+
</properties>
80+
81+
<build>
82+
<finalName>${artifactId}</finalName>
83+
<plugins>
84+
<plugin>
85+
<groupId>org.apache.maven.plugins</groupId>
86+
<artifactId>maven-rar-plugin</artifactId>
87+
<version>2.4</version>
88+
<configuration>
89+
<archive>
90+
<index>true</index>
91+
<manifestEntries>
92+
<Dependencies>javax.jcr export, org.slf4j</Dependencies>
93+
</manifestEntries>
94+
</archive>
95+
</configuration>
96+
</plugin>
97+
</plugins>
98+
</build>
99+
100+
<dependencies>
101+
<dependency>
102+
<groupId>org.silverpeas.jcr</groupId>
103+
<artifactId>access-control</artifactId>
104+
<version>1.0-SNAPSHOT</version>
105+
</dependency>
106+
<dependency>
107+
<groupId>org.apache.jackrabbit</groupId>
108+
<artifactId>jackrabbit-jca</artifactId>
109+
<version>${project.version}</version>
110+
<type>jar</type>
111+
<exclusions>
112+
<exclusion>
113+
<groupId>org.apache.tika</groupId>
114+
<artifactId>tika-core</artifactId>
115+
</exclusion>
116+
<exclusion>
117+
<groupId>org.apache.tika</groupId>
118+
<artifactId>tika-parsers</artifactId>
119+
</exclusion>
120+
<exclusion>
121+
<groupId>org.apache.derby</groupId>
122+
<artifactId>derby</artifactId>
123+
</exclusion>
124+
</exclusions>
125+
</dependency>
126+
<dependency>
127+
<groupId>org.apache.jackrabbit</groupId>
128+
<artifactId>jackrabbit-jcr-server</artifactId>
129+
<version>${project.version}</version>
130+
<exclusions>
131+
<exclusion>
132+
<groupId>org.apache.tika</groupId>
133+
<artifactId>tika-core</artifactId>
134+
</exclusion>
135+
<exclusion>
136+
<groupId>commons-fileupload</groupId>
137+
<artifactId>commons-fileupload</artifactId>
138+
</exclusion>
139+
<exclusion>
140+
<groupId>commons-httpclient</groupId>
141+
<artifactId>commons-httpclient</artifactId>
142+
</exclusion>
143+
</exclusions>
144+
</dependency>
145+
<dependency>
146+
<groupId>org.apache.tika</groupId>
147+
<artifactId>tika-parsers</artifactId>
148+
<version>1.5</version>
149+
<exclusions>
150+
<exclusion>
151+
<groupId>commons-logging</groupId>
152+
<artifactId>commons-logging</artifactId>
153+
</exclusion>
154+
<exclusion>
155+
<groupId>org.apache.james</groupId>
156+
<artifactId>apache-mime4j-core</artifactId>
157+
</exclusion>
158+
<exclusion>
159+
<groupId>org.apache.james</groupId>
160+
<artifactId>apache-mime4j-dom</artifactId>
161+
</exclusion>
162+
<exclusion>
163+
<groupId>de.l3s.boilerpipe</groupId>
164+
<artifactId>boilerpipe</artifactId>
165+
</exclusion>
166+
<exclusion>
167+
<groupId>org.ow2.asm</groupId>
168+
<artifactId>asm-debug-all</artifactId>
169+
</exclusion>
170+
<exclusion>
171+
<groupId>org.apache.commons</groupId>
172+
<artifactId>commons-compress</artifactId>
173+
</exclusion>
174+
<exclusion>
175+
<groupId>com.drewnoakes</groupId>
176+
<artifactId>metadata-extractor</artifactId>
177+
</exclusion>
178+
<exclusion>
179+
<groupId>edu.ucar</groupId>
180+
<artifactId>netcdf</artifactId>
181+
</exclusion>
182+
<exclusion>
183+
<groupId>rome</groupId>
184+
<artifactId>rome</artifactId>
185+
</exclusion>
186+
<exclusion>
187+
<groupId>com.uwyn</groupId>
188+
<artifactId>jhighlight</artifactId>
189+
</exclusion>
190+
</exclusions>
191+
</dependency>
192+
</dependencies>
193+
194+
</project>

0 commit comments

Comments
 (0)