这是indexloc提供的服务,不要输入任何密码
Skip to content

[JAVA-48066] Align module names, folder names and artifact id #18703

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

Merged
merged 1 commit into from
Jul 23, 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 json-modules/json-conversion-2/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@
<modelVersion>4.0.0</modelVersion>
<groupId>org.baeldung</groupId>
<artifactId>json-conversion-2</artifactId>
<name>json-conversion</name>
<name>json-conversion-2</name>

<parent>
<artifactId>json-modules</artifactId>
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -2,22 +2,17 @@
<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 https://maven.apache.org/xsd/maven-4.0.0.xsd">
<modelVersion>4.0.0</modelVersion>
<artifactId>spring-security-url-http-method-auth</artifactId>
<version>0.0.1-SNAPSHOT</version>
<name>spring-security-url-http-method-auth</name>
<description>Demo project for Spring Security to secure URLs and HTTP-Method</description>

<parent>
<groupId>com.baeldung</groupId>
<artifactId>spring-security-authorization</artifactId>
<version>0.0.1-SNAPSHOT</version>
</parent>

<artifactId>spring-security-url-http-method-auth</artifactId>
<version>0.0.1-SNAPSHOT</version>
<name>spring-security</name>
<description>Demo project for Spring Security to secure URLs and HTTP-Method</description>

<properties>
<java.version>17</java.version>
<spring-boot.starter.version>3.4.4</spring-boot.starter.version>
<h2-db.version>2.3.232</h2-db.version>
</properties>
<dependencies>
<dependency>
<groupId>org.springframework.boot</groupId>
Expand Down Expand Up @@ -55,4 +50,10 @@
</plugins>
</build>

<properties>
<java.version>17</java.version>
<spring-boot.starter.version>3.4.4</spring-boot.starter.version>
<h2-db.version>2.3.232</h2-db.version>
</properties>

</project>
15 changes: 4 additions & 11 deletions spring-security-modules/spring-security-faking-oauth2-sso/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -2,52 +2,45 @@
<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 https://maven.apache.org/xsd/maven-4.0.0.xsd">
<modelVersion>4.0.0</modelVersion>
<artifactId>spring-security-faking-oauth2-sso</artifactId>
<version>0.0.1-SNAPSHOT</version>
<name>spring-security-faking-oauth2-sso</name>

<parent>
<groupId>com.baeldung</groupId>
<artifactId>spring-security-modules</artifactId>
<version>0.0.1-SNAPSHOT</version>
</parent>

<artifactId>faking-oauth2-sso</artifactId>
<version>0.0.1-SNAPSHOT</version>
<name>spring-security-faking-oauth2-sso</name>


<dependencies>
<dependency>
<groupId>org.springframework.boot</groupId>
<artifactId>spring-boot-starter-oauth2-client</artifactId>
</dependency>

<dependency>
<groupId>org.springframework.boot</groupId>
<artifactId>spring-boot-starter-security</artifactId>
</dependency>

<dependency>
<groupId>org.springframework.boot</groupId>
<artifactId>spring-boot-starter-web</artifactId>
</dependency>

<dependency>
<groupId>org.springframework.boot</groupId>
<artifactId>spring-boot-starter-test</artifactId>
<scope>test</scope>
</dependency>

<dependency>
<groupId>org.springframework.security</groupId>
<artifactId>spring-security-test</artifactId>
<scope>test</scope>
</dependency>

<dependency>
<groupId>com.github.tomakehurst</groupId>
<artifactId>wiremock-jre8-standalone</artifactId>
<version>${wiremock-jre8-standalone.version}</version>
<scope>test</scope>
</dependency>

</dependencies>

<properties>
Expand Down
8 changes: 6 additions & 2 deletions static-analysis-modules/jspecify-nullsafety/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@
<modelVersion>4.0.0</modelVersion>
<artifactId>jspecify-nullsafety</artifactId>
<packaging>jar</packaging>
<name>core-java-8-datetime-3</name>
<name>jspecify-nullsafety</name>

<parent>
<groupId>com.baeldung</groupId>
Expand All @@ -17,8 +17,12 @@
<dependency>
<groupId>org.jspecify</groupId>
<artifactId>jspecify</artifactId>
<version>0.3.0</version>
<version>${jspecify.version}</version>
</dependency>
</dependencies>

<properties>
<jspecify.version>0.3.0</jspecify.version>
</properties>

</project>