Skip to content

Commit

Permalink
Mazer theme v2.2.0 update with Spring Boot v3.1.4 update
Browse files Browse the repository at this point in the history
  • Loading branch information
hi-rullah committed Sep 29, 2023
1 parent 11b636e commit 5f9842a
Show file tree
Hide file tree
Showing 6,798 changed files with 584,965 additions and 185,919 deletions.
The diff you're trying to view is too large. We only load the first 3000 changed files.
68 changes: 23 additions & 45 deletions pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -5,18 +5,20 @@
<parent>
<groupId>org.springframework.boot</groupId>
<artifactId>spring-boot-starter-parent</artifactId>
<version>2.7.9-SNAPSHOT</version>
<version>3.1.4</version>
<relativePath/> <!-- lookup parent from repository -->
</parent>
<groupId>com.deyhayenterprise</groupId>
<artifactId>mazer-admin-template</artifactId>
<version>0.0.1-SNAPSHOT</version>
<packaging>war</packaging>
<version>2.0.0</version>
<packaging>jar</packaging>
<name>mazer-admin-template</name>
<description>Mazer admin template dashboard and landing page template</description>

<properties>
<java.version>11</java.version>
<java.version>17</java.version>
</properties>

<dependencies>
<dependency>
<groupId>org.springframework.boot</groupId>
Expand All @@ -40,61 +42,37 @@
<optional>true</optional>
</dependency>

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

<!-- <build>-->
<!-- <plugins>-->
<!-- <plugin>-->
<!-- <groupId>org.springframework.boot</groupId>-->
<!-- <artifactId>spring-boot-maven-plugin</artifactId>-->
<!-- </plugin>-->
<!-- </plugins>-->
<!-- </build>-->

<build>
<plugins>
<plugin>
<groupId>org.springframework.boot</groupId>
<artifactId>spring-boot-maven-plugin</artifactId>
<configuration>
<excludes>
<exclude>
<groupId>org.projectlombok</groupId>
<artifactId>lombok</artifactId>
</exclude>
</excludes>
</configuration>
</plugin>
</plugins>
</build>
<repositories>
<repository>
<id>spring-milestones</id>
<name>Spring Milestones</name>
<url>https://repo.spring.io/milestone</url>
<snapshots>
<enabled>false</enabled>
</snapshots>
</repository>
<repository>
<id>spring-snapshots</id>
<name>Spring Snapshots</name>
<url>https://repo.spring.io/snapshot</url>
<releases>
<enabled>false</enabled>
</releases>
</repository>
</repositories>
<pluginRepositories>
<pluginRepository>
<id>spring-milestones</id>
<name>Spring Milestones</name>
<url>https://repo.spring.io/milestone</url>
<snapshots>
<enabled>false</enabled>
</snapshots>
</pluginRepository>
<pluginRepository>
<id>spring-snapshots</id>
<name>Spring Snapshots</name>
<url>https://repo.spring.io/snapshot</url>
<releases>
<enabled>false</enabled>
</releases>
</pluginRepository>
</pluginRepositories>

</project>
19 changes: 19 additions & 0 deletions readme.md
Original file line number Diff line number Diff line change
Expand Up @@ -32,8 +32,27 @@ Spring Boot 2.7.9-snapshot

Tomcat WAR Build

# Updates on 29-Sep-2023
Java version updated to 17

Spring Boot version updated to 3.1.4

JAR Build

Mazer Theme version updated to 2.2.0

No .html suffix needed on the URL controller. Removed the .html extension in all pages href. This is the only changes on HTML pages.
Thymeleaf related tags are not added.

# TODO
Dockerfile design

# Screenshot
Screnshot
![screenshot](screenshot.png)

Screenshot v2.2.0
![screenshot v2.2.0](screenshot_mazer_v2.2.0.png)



Binary file added screenshot_mazer_v2.2.0.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Original file line number Diff line number Diff line change
@@ -1,5 +1,6 @@
package com.deyhayenterprise.mazeradmintemplate.controller;

import org.springframework.web.bind.annotation.GetMapping;
import org.springframework.web.bind.annotation.RequestMapping;
import org.springframework.web.bind.annotation.RestController;

Expand All @@ -11,7 +12,7 @@
@Slf4j
public class ServiceContoller {

@RequestMapping("/greetingNoParamTest")
@GetMapping("/greetingNoParamTest")
public String greetingNoParamTest() {

log.info("greeting..");
Expand Down
Loading

0 comments on commit 5f9842a

Please sign in to comment.