Skip to content

Commit

Permalink
Fixes #4544 - Rename default-datasource extension to datasource exten…
Browse files Browse the repository at this point in the history
…sion (#4554)
  • Loading branch information
mnriem authored Jan 30, 2025
1 parent e6eb513 commit e5a50e9
Show file tree
Hide file tree
Showing 14 changed files with 98 additions and 9 deletions.
2 changes: 1 addition & 1 deletion debug/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -102,7 +102,7 @@
</dependency>
<dependency>
<groupId>cloud.piranha.extension</groupId>
<artifactId>piranha-extension-default-datasource</artifactId>
<artifactId>piranha-extension-datasource</artifactId>
<version>${project.version}</version>
<scope>compile</scope>
</dependency>
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -8,10 +8,10 @@
<version>25.2.0-SNAPSHOT</version>
</parent>

<artifactId>piranha-extension-default-datasource</artifactId>
<artifactId>piranha-extension-datasource</artifactId>
<packaging>jar</packaging>

<name>Piranha - Extension - Default Datasource</name>
<name>Piranha - Extension - Datasource</name>

<dependencies>
<!-- compile -->
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,7 @@
*/

/**
* This module delivers the default DataSource extension
* This module delivers the datasource extension
*
* <p>
* This extension adds a default DataSource under the
Expand Down
2 changes: 1 addition & 1 deletion extension/eclipselink/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@
</dependency>
<dependency>
<groupId>cloud.piranha.extension</groupId>
<artifactId>piranha-extension-default-datasource</artifactId>
<artifactId>piranha-extension-datasource</artifactId>
<version>${project.version}</version>
<scope>compile</scope>
</dependency>
Expand Down
2 changes: 1 addition & 1 deletion extension/micro/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -38,7 +38,7 @@
</dependency>
<dependency>
<groupId>cloud.piranha.extension</groupId>
<artifactId>piranha-extension-default-datasource</artifactId>
<artifactId>piranha-extension-datasource</artifactId>
<version>${project.version}</version>
<scope>compile</scope>
</dependency>
Expand Down
2 changes: 1 addition & 1 deletion extension/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,6 @@
<module>concurro</module>
<module>coreprofile</module>
<module>declared</module>
<module>default-datasource</module>
<module>eclipselink</module>
<module>epicyro</module>
<module>exousia</module>
Expand Down Expand Up @@ -63,6 +62,7 @@
<module>weld</module>
<module>yasson</module>
<module>wasp</module>
<module>datasource</module>
</modules>

<dependencyManagement>
Expand Down
2 changes: 1 addition & 1 deletion extension/webprofile/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -52,7 +52,7 @@
</dependency>
<dependency>
<groupId>cloud.piranha.extension</groupId>
<artifactId>piranha-extension-default-datasource</artifactId>
<artifactId>piranha-extension-datasource</artifactId>
<version>${project.version}</version>
<scope>compile</scope>
</dependency>
Expand Down
89 changes: 89 additions & 0 deletions src/site/resources/css/site.css
Original file line number Diff line number Diff line change
@@ -0,0 +1,89 @@
/* Set the background color to black */
body {
background-color: black;
color: white;
}

/* Style headers with gold color */
h1, h2, h3, h4, h5, h6 {
color: goldenrod;
}

/* Style links with gold color */
a {
color: goldenrod;
}

/* Style navigation menu with black background and gold text */
.navbar, .navbar-default {
background-color: black;
color: goldenrod;
}

.navbar a {
color: goldenrod;
}

/* Style footer with black background and gold text */
footer {
background-color: black;
color: goldenrod;
}

#breadcrumbs {
background-color: black;
color: goldenrod;
}

#breadcrumbs ul {
background-color: black;
}

#breadcrumbs li {
background-color: black;
color: goldenrod;
}

#breadcrumbs a {
color: goldenrod;
}

#breadcrumbs .divider {
color: goldenrod;
}

#publishDate {
color: goldenrod;
background-color: black;
}

.nav.nav-list {
background-color: black;
color: goldenrod;
}

.nav.nav-list a {
color: goldenrod;
}

.nav.nav-list .active {
background-color: black;
font-style: italic;
border: none;
box-shadow: none;
outline: none;
}

.sidebar-nav {
background-color: black;
color: goldenrod;
border: none;
}

.sidebar-nav a {
color: goldenrod;
}

.well.sidebar-nav {
border: none;
}
2 changes: 1 addition & 1 deletion src/site/site.xml
Original file line number Diff line number Diff line change
Expand Up @@ -62,4 +62,4 @@
<version>2.0.0</version>
</skin>
<version position="left"/>
</project>
</project>

0 comments on commit e5a50e9

Please sign in to comment.