Skip to content

Commit ca1b67c

Browse files
committed
Update the configuration and library module to the Silverpeas 6.4
1 parent bf04962 commit ca1b67c

File tree

106 files changed

+2758
-1777
lines changed

Some content is hidden

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

106 files changed

+2758
-1777
lines changed

META-INF/persistence.xml

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

README.md

Lines changed: 6 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,2 +1,6 @@
1-
This project is an example of how to make a Component Silverpeas.
2-
It is used as a support in the tutorial on how to develop new applications in the Silverpeas collaborative portal.
1+
This project is an example of how to make a Silverpeas Component or, in another term, an
2+
application embedded in Silverpeas. Like any other Silverpeas components, it relies upon
3+
Silverpeas Core.
4+
5+
It is used as a support in the tutorial on how to develop new applications in the Silverpeas
6+
Collaborative Portal.

pom.xml

Lines changed: 13 additions & 25 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
<?xml version="1.0" encoding="UTF-8"?>
22
<!--
33
4-
Copyright (C) 2000 - 2014 Silverpeas
4+
Copyright (C) 2000 - 2024 Silverpeas
55
66
This program is free software: you can redistribute it and/or modify
77
it under the terms of the GNU Affero General Public License as
@@ -11,48 +11,36 @@
1111
As a special exception to the terms and conditions of version 3.0 of
1212
the GPL, you may redistribute this Program in connection with Free/Libre
1313
Open Source Software ("FLOSS") applications as described in Silverpeas's
14-
FLOSS exception. You should have recieved a copy of the text describing
14+
FLOSS exception. You should have received a copy of the text describing
1515
the FLOSS exception, and it is also available here:
16-
"http://www.silverpeas.com/legal/licensing"
16+
"https://www.silverpeas.org/legal/floss_exception.html"
1717
1818
This program is distributed in the hope that it will be useful,
1919
but WITHOUT ANY WARRANTY; without even the implied warranty of
2020
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
2121
GNU Affero General Public License for more details.
2222
2323
You should have received a copy of the GNU Affero General Public License
24-
along with this program. If not, see <http://www.gnu.org/licenses/>.
24+
along with this program. If not, see <https://www.gnu.org/licenses/>.
2525
26-
--><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/maven-v4_0_0.xsd">
26+
-->
27+
<project xmlns="http://maven.apache.org/POM/4.0.0"
28+
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
29+
xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 https://maven.apache.org/maven-v4_0_0.xsd">
2730
<modelVersion>4.0.0</modelVersion>
2831
<parent>
29-
<groupId>com.silverpeas</groupId>
32+
<groupId>org.silverpeas</groupId>
3033
<artifactId>components</artifactId>
31-
<version>5.15.13</version>
34+
<version>6.4.1</version>
3235
</parent>
3336

34-
<repositories>
35-
<repository>
36-
<id>Silverpeas</id>
37-
<layout>default</layout>
38-
<name>Silverpeas Repository</name>
39-
<url>http://www.silverpeas.org/nexus/content/groups/silverpeas</url>
40-
<releases>
41-
<enabled>true</enabled>
42-
</releases>
43-
<snapshots>
44-
<enabled>true</enabled>
45-
</snapshots>
46-
</repository>
47-
</repositories>
48-
4937
<groupId>org.silverpeas.components</groupId>
5038
<artifactId>todolist</artifactId>
5139
<packaging>pom</packaging>
52-
<name>todolist Component</name>
40+
<name>Todolist Component</name>
5341
<modules>
54-
<module>todolist-jar</module>
42+
<module>todolist-configuration</module>
43+
<module>todolist-library</module>
5544
<module>todolist-war</module>
56-
<module>todolist-config</module>
5745
</modules>
5846
</project>

todolist-config/src/main/config/dbRepository/data/mssql/todolist-contribution.xml

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

todolist-config/src/main/config/dbRepository/data/oracle/todolist-contribution.xml

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

todolist-config/src/main/config/dbRepository/data/postgres/todolist-contribution.xml

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

todolist-config/src/main/config/dbRepository/mssql/todolist/001/create_constraint.sql

Whitespace-only changes.

todolist-config/src/main/config/dbRepository/mssql/todolist/001/create_index.sql

Lines changed: 0 additions & 1 deletion
This file was deleted.

todolist-config/src/main/config/dbRepository/mssql/todolist/001/create_table.sql

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

todolist-config/src/main/config/dbRepository/mssql/todolist/001/drop_constraint.sql

Whitespace-only changes.

todolist-config/src/main/config/dbRepository/mssql/todolist/001/drop_index.sql

Lines changed: 0 additions & 1 deletion
This file was deleted.

todolist-config/src/main/config/dbRepository/mssql/todolist/001/drop_table.sql

Lines changed: 0 additions & 1 deletion
This file was deleted.

todolist-config/src/main/config/dbRepository/oracle/todolist/001/create_constraint.sql

Whitespace-only changes.

todolist-config/src/main/config/dbRepository/oracle/todolist/001/create_index.sql

Lines changed: 0 additions & 1 deletion
This file was deleted.

todolist-config/src/main/config/dbRepository/oracle/todolist/001/drop_constraint.sql

Whitespace-only changes.

todolist-config/src/main/config/dbRepository/oracle/todolist/001/drop_index.sql

Lines changed: 0 additions & 1 deletion
This file was deleted.

todolist-config/src/main/config/dbRepository/oracle/todolist/001/drop_table.sql

Lines changed: 0 additions & 1 deletion
This file was deleted.

todolist-config/src/main/config/dbRepository/postgres/todolist/001/create_constraint.sql

Whitespace-only changes.

todolist-config/src/main/config/dbRepository/postgres/todolist/001/create_index.sql

Lines changed: 0 additions & 1 deletion
This file was deleted.

todolist-config/src/main/config/dbRepository/postgres/todolist/001/drop_constraint.sql

Whitespace-only changes.

todolist-config/src/main/config/dbRepository/postgres/todolist/001/drop_index.sql

Lines changed: 0 additions & 1 deletion
This file was deleted.

todolist-config/src/main/config/dbRepository/postgres/todolist/001/drop_table.sql

Lines changed: 0 additions & 1 deletion
This file was deleted.

todolist-config/src/main/config/silvertrace/todolistModule.properties

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

0 commit comments

Comments
 (0)