Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Fixes #4544 - Rename default-datasource extension to datasource extension #4554

Merged
merged 2 commits into from
Jan 30, 2025
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
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>
Loading