-
Notifications
You must be signed in to change notification settings - Fork 106
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Restored services to revision fe7b98d
- Loading branch information
1 parent
74ddc68
commit f62f647
Showing
29 changed files
with
369 additions
and
377 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,173 +1,167 @@ | ||
<?xml version="1.0"?> | ||
<project xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd" | ||
xmlns="http://maven.apache.org/POM/4.0.0" | ||
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"> | ||
<modelVersion>4.0.0</modelVersion> | ||
<parent> | ||
<project xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd" xmlns="http://maven.apache.org/POM/4.0.0" | ||
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"> | ||
<modelVersion>4.0.0</modelVersion> | ||
<parent> | ||
<groupId>org.springframework.boot</groupId> | ||
<artifactId>spring-boot-starter-parent</artifactId> | ||
<version>2.2.13.RELEASE</version> | ||
</parent> | ||
<groupId>org.egov</groupId> | ||
<artifactId>egov-enc-service</artifactId> | ||
<version>1.1.4</version> | ||
<name>egov-enc-service</name> | ||
<properties> | ||
<log4j2.version>2.17.1</log4j2.version> | ||
<java.version>1.8</java.version> | ||
<maven.compiler.source>${java.version}</maven.compiler.source> | ||
<maven.compiler.target>${java.version}</maven.compiler.target> | ||
<lombok.version>1.18.8</lombok.version> | ||
</properties> | ||
<dependencies> | ||
<dependency> | ||
<groupId>org.springframework</groupId> | ||
<artifactId>spring-beans</artifactId> | ||
<version>5.2.20.RELEASE</version> | ||
</dependency> | ||
<dependency> | ||
<groupId>org.springframework.boot</groupId> | ||
<artifactId>spring-boot-starter-web</artifactId> | ||
</dependency> | ||
<dependency> | ||
<groupId>org.springframework.boot</groupId> | ||
<artifactId>spring-boot-starter-jdbc</artifactId> | ||
</dependency> | ||
<dependency> | ||
<groupId>org.springframework.boot</groupId> | ||
<artifactId>spring-boot-starter-test</artifactId> | ||
<scope>test</scope> | ||
</dependency> | ||
<dependency> | ||
<groupId>io.swagger</groupId> | ||
<artifactId>swagger-core</artifactId> | ||
<version>1.5.18</version> | ||
</dependency> | ||
<dependency> | ||
<groupId>org.egov.services</groupId> | ||
<artifactId>tracer</artifactId> | ||
<version>2.1.0-SNAPSHOT</version> | ||
</dependency> | ||
<dependency> | ||
<groupId>org.projectlombok</groupId> | ||
<artifactId>lombok</artifactId> | ||
<optional>true</optional> | ||
</dependency> | ||
<dependency> | ||
<groupId>com.fasterxml.jackson.datatype</groupId> | ||
<artifactId>jackson-datatype-jsr310</artifactId> | ||
</dependency> | ||
<dependency> | ||
<groupId>org.json</groupId> | ||
<artifactId>json</artifactId> | ||
<version>20180813</version> | ||
</dependency> | ||
<dependency> | ||
<groupId>javax.validation</groupId> | ||
<artifactId>validation-api</artifactId> | ||
</dependency> | ||
<dependency> | ||
<groupId>org.postgresql</groupId> | ||
<artifactId>postgresql</artifactId> | ||
</dependency> | ||
<dependency> | ||
<groupId>com.microsoft.sqlserver</groupId> | ||
<artifactId>mssql-jdbc</artifactId> | ||
<scope>runtime</scope> | ||
</dependency> | ||
<dependency> | ||
<groupId>org.flywaydb</groupId> | ||
<artifactId>flyway-core</artifactId> | ||
<version>6.4.3</version> | ||
</dependency> | ||
<dependency> | ||
<groupId>org.bouncycastle</groupId> | ||
<artifactId>bcprov-jdk15on</artifactId> | ||
<version>1.60</version> | ||
</dependency> | ||
<!-- https://mvnrepository.com/artifact/com.amazonaws/aws-java-sdk-kms --> | ||
<dependency> | ||
<groupId>com.amazonaws</groupId> | ||
<artifactId>aws-java-sdk-kms</artifactId> | ||
<version>1.11.762</version> | ||
</dependency> | ||
</dependencies> | ||
<repositories> | ||
<repository> | ||
<id>repo.egovernments.org</id> | ||
<name>eGov DIGIT Releases Repository</name> | ||
<url>https://nexus-repo.digit.org/nexus/content/repositories/snapshots/</url> | ||
</repository> | ||
<repository> | ||
<id>repo.egovernments.org.snapshots</id> | ||
<name>eGov ERP Releases Repository</name> | ||
<url>https://nexus-repo.egovernments.org/nexus/content/repositories/snapshots/</url> | ||
</repository> | ||
<repository> | ||
<id>repo.egovernments.org.public</id> | ||
<name>eGov Public Repository Group</name> | ||
<url>https://nexus-repo.egovernments.org/nexus/content/groups/public/</url> | ||
</repository> | ||
</repositories> | ||
<build> | ||
<sourceDirectory>src/main/java</sourceDirectory> | ||
<plugins> | ||
<plugin> | ||
<groupId>org.springframework.boot</groupId> | ||
<artifactId>spring-boot-starter-parent</artifactId> | ||
<version>3.3.3</version> | ||
</parent> | ||
<groupId>org.egov</groupId> | ||
<artifactId>egov-enc-service</artifactId> | ||
<version>1.1.4</version> | ||
<name>egov-enc-service</name> | ||
<properties> | ||
<log4j2.version>2.17.1</log4j2.version> | ||
<java.version>1.8</java.version> | ||
<maven.compiler.source>${java.version}</maven.compiler.source> | ||
<maven.compiler.target>${java.version}</maven.compiler.target> | ||
<lombok.version>1.18.8</lombok.version> | ||
</properties> | ||
<dependencies> | ||
<dependency> | ||
<groupId>org.springframework</groupId> | ||
<artifactId>spring-beans</artifactId> | ||
<version>5.2.20.RELEASE</version> | ||
</dependency> | ||
<dependency> | ||
<groupId>org.springframework.boot</groupId> | ||
<artifactId>spring-boot-starter-web</artifactId> | ||
</dependency> | ||
<dependency> | ||
<groupId>org.springframework.boot</groupId> | ||
<artifactId>spring-boot-starter-jdbc</artifactId> | ||
</dependency> | ||
<dependency> | ||
<groupId>org.springframework.boot</groupId> | ||
<artifactId>spring-boot-starter-test</artifactId> | ||
<scope>test</scope> | ||
</dependency> | ||
<dependency> | ||
<groupId>io.swagger</groupId> | ||
<artifactId>swagger-core</artifactId> | ||
<version>1.5.18</version> | ||
</dependency> | ||
<dependency> | ||
<groupId>org.egov.services</groupId> | ||
<artifactId>tracer</artifactId> | ||
<version>2.1.0-SNAPSHOT</version> | ||
</dependency> | ||
<dependency> | ||
<groupId>org.projectlombok</groupId> | ||
<artifactId>lombok</artifactId> | ||
<optional>true</optional> | ||
</dependency> | ||
<dependency> | ||
<groupId>com.fasterxml.jackson.datatype</groupId> | ||
<artifactId>jackson-datatype-jsr310</artifactId> | ||
</dependency> | ||
<dependency> | ||
<groupId>org.json</groupId> | ||
<artifactId>json</artifactId> | ||
<version>20180813</version> | ||
</dependency> | ||
<dependency> | ||
<groupId>jakarta.validation</groupId> | ||
<artifactId>jakarta.validation-api</artifactId> | ||
</dependency> | ||
<dependency> | ||
<groupId>org.postgresql</groupId> | ||
<artifactId>postgresql</artifactId> | ||
</dependency> | ||
<dependency> | ||
<groupId>com.microsoft.sqlserver</groupId> | ||
<artifactId>mssql-jdbc</artifactId> | ||
<scope>runtime</scope> | ||
</dependency> | ||
<dependency> | ||
<groupId>org.flywaydb</groupId> | ||
<artifactId>flyway-core</artifactId> | ||
<version>6.4.3</version> | ||
</dependency> | ||
<dependency> | ||
<groupId>org.bouncycastle</groupId> | ||
<artifactId>bcprov-jdk15on</artifactId> | ||
<version>1.60</version> | ||
</dependency> | ||
<!-- https://mvnrepository.com/artifact/com.amazonaws/aws-java-sdk-kms --> | ||
<dependency> | ||
<groupId>com.amazonaws</groupId> | ||
<artifactId>aws-java-sdk-kms</artifactId> | ||
<version>1.11.762</version> | ||
</dependency> | ||
<dependency> | ||
<groupId>jakarta.annotation</groupId> | ||
<artifactId>jakarta.annotation-api</artifactId> | ||
</dependency> | ||
</dependencies> | ||
<repositories> | ||
<repository> | ||
<id>repo.egovernments.org</id> | ||
<name>eGov DIGIT Releases Repository</name> | ||
<url>https://nexus-repo.digit.org/nexus/content/repositories/snapshots/</url> | ||
</repository> | ||
<repository> | ||
<id>repo.egovernments.org.snapshots</id> | ||
<name>eGov ERP Releases Repository</name> | ||
<url>https://nexus-repo.egovernments.org/nexus/content/repositories/snapshots/</url> | ||
</repository> | ||
<repository> | ||
<id>repo.egovernments.org.public</id> | ||
<name>eGov Public Repository Group</name> | ||
<url>https://nexus-repo.egovernments.org/nexus/content/groups/public/</url> | ||
</repository> | ||
</repositories> | ||
<build> | ||
<sourceDirectory>src/main/java</sourceDirectory> | ||
<plugins> | ||
<plugin> | ||
<groupId>org.springframework.boot</groupId> | ||
<artifactId>spring-boot-maven-plugin</artifactId> | ||
<executions> | ||
<execution> | ||
<goals> | ||
<goal>repackage</goal> | ||
</goals> | ||
</execution> | ||
</executions> | ||
<configuration> | ||
<excludes> | ||
<exclude> | ||
<groupId>org.projectlombok</groupId> | ||
<artifactId>lombok</artifactId> | ||
</exclude> | ||
<exclude> | ||
<groupId>org.springframework.boot</groupId> | ||
<artifactId>spring-boot-devtools</artifactId> | ||
</exclude> | ||
</excludes> | ||
</configuration> | ||
</plugin> | ||
<!-- TODO finx plugins--> | ||
<!-- <plugin>--> | ||
<!-- <groupId>cz.habarta.typescript-generator</groupId>--> | ||
<!-- <artifactId>typescript-generator-maven-plugin</artifactId>--> | ||
<!-- <version>2.22.595</version>--> | ||
<!-- <executions>--> | ||
<!-- <execution>--> | ||
<!-- <id>generate</id>--> | ||
<!-- <goals>--> | ||
<!-- <goal>generate</goal>--> | ||
<!-- </goals>--> | ||
<!-- <phase>process-classes</phase>--> | ||
<!-- </execution>--> | ||
<!-- </executions>--> | ||
<!-- <configuration>--> | ||
<!-- <jsonLibrary>jackson2</jsonLibrary>--> | ||
<!-- <classes>--> | ||
<!-- <class>org.egov.enc.web.models.EncryptionRequest</class>--> | ||
<!-- <class>org.egov.enc.web.models.SignRequest</class>--> | ||
<!-- <class>org.egov.enc.web.models.VerifyRequest</class>--> | ||
<!-- <class>org.egov.enc.web.models.RotateKeyRequest</class>--> | ||
<!-- <class>org.egov.enc.web.models.RotateKeyResponse</class>--> | ||
<!-- <class>org.egov.enc.web.models.VerifyResponse</class>--> | ||
<!-- <class>org.egov.enc.web.models.SignResponse</class>--> | ||
<!-- </classes>--> | ||
<!-- <namespace>Digit</namespace>--> | ||
<!-- <outputKind>module</outputKind>--> | ||
<!-- </configuration>--> | ||
<!-- </plugin>--> | ||
</plugins> | ||
</build> | ||
<artifactId>spring-boot-maven-plugin</artifactId> | ||
<executions> | ||
<execution> | ||
<goals> | ||
<goal>repackage</goal> | ||
</goals> | ||
</execution> | ||
</executions> | ||
<configuration> | ||
<excludes> | ||
<exclude> | ||
<groupId>org.projectlombok</groupId> | ||
<artifactId>lombok</artifactId> | ||
</exclude> | ||
<exclude> | ||
<groupId>org.springframework.boot</groupId> | ||
<artifactId>spring-boot-devtools</artifactId> | ||
</exclude> | ||
</excludes> | ||
</configuration> | ||
</plugin> | ||
<plugin> | ||
<groupId>cz.habarta.typescript-generator</groupId> | ||
<artifactId>typescript-generator-maven-plugin</artifactId> | ||
<version>2.22.595</version> | ||
<executions> | ||
<execution> | ||
<id>generate</id> | ||
<goals> | ||
<goal>generate</goal> | ||
</goals> | ||
<phase>process-classes</phase> | ||
</execution> | ||
</executions> | ||
<configuration> | ||
<jsonLibrary>jackson2</jsonLibrary> | ||
<classes> | ||
<class>org.egov.enc.web.models.EncryptionRequest</class> | ||
<class>org.egov.enc.web.models.SignRequest</class> | ||
<class>org.egov.enc.web.models.VerifyRequest</class> | ||
<class>org.egov.enc.web.models.RotateKeyRequest</class> | ||
<class>org.egov.enc.web.models.RotateKeyResponse</class> | ||
<class>org.egov.enc.web.models.VerifyResponse</class> | ||
<class>org.egov.enc.web.models.SignResponse</class> | ||
</classes> | ||
<namespace>Digit</namespace> | ||
<outputKind>module</outputKind> | ||
</configuration> | ||
</plugin> | ||
</plugins> | ||
</build> | ||
</project> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.