Skip to content

Commit db0f144

Browse files
authored
Merge pull request #77 from PSMRI/build-update
feat: ensure url doesn't have version. upgrade version
2 parents 9c9a262 + 29f03fe commit db0f144

File tree

8 files changed

+13
-225
lines changed

8 files changed

+13
-225
lines changed

pom.xml

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -5,11 +5,11 @@
55
<modelVersion>4.0.0</modelVersion>
66

77
<groupId>com.iemr.tm</groupId>
8-
<artifactId>tmapi-v1.0</artifactId>
9-
<version>0.0.1-SNAPSHOT</version>
8+
<artifactId>tm-api</artifactId>
9+
<version>3.1.0</version>
1010
<packaging>war</packaging>
1111

12-
<name>tm-api</name>
12+
<name>TM-API</name>
1313
<description>Piramal TM</description>
1414

1515
<parent>
@@ -300,7 +300,7 @@
300300

301301

302302
<build>
303-
<finalName>tmapi-v3.0.0</finalName>
303+
<finalName>${artifactId}-${version}</finalName>
304304

305305
<plugins>
306306
<plugin>

src/main/environment/common_ci.properties

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -71,6 +71,7 @@ [email protected]_SECRET_KEY@
7171

7272

7373
#ELK logging file name
74+
logging.path=logs/
7475
logging.file.name=@env.TM_API_LOGGING_FILE_NAME@
7576

7677
springdoc.api-docs.enabled=@env.SWAGGER_DOC_ENABLED@

src/main/environment/common_dev.properties

Lines changed: 0 additions & 70 deletions
This file was deleted.

src/main/environment/common_example.properties

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -69,3 +69,7 @@ prescription=TMPrescription SMS
6969
### Redis IP
7070
spring.redis.host=localhost
7171

72+
jwt.secret=my-32-character-ultra-secure-and-ultra-long-secret
73+
logging.path=logs/
74+
logging.file.name=logs/tm-api.log
75+

src/main/environment/common_test.properties

Lines changed: 0 additions & 75 deletions
This file was deleted.

src/main/environment/common_uat.properties

Lines changed: 0 additions & 73 deletions
This file was deleted.

src/main/resources/application.properties

Lines changed: 0 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -50,8 +50,5 @@ logging.level.org.hibernate=INFO
5050
logging.level.com.iemr=DEBUG
5151
logging.level.org.springframework=INFO
5252

53-
logging.path=logs/
54-
logging.file.name=logs/tm-api.log
55-
5653
spring.main.allow-circular-references=true
5754
spring.main.allow-bean-definition-overriding=true
Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,4 @@
1+
<?xml version="1.0" encoding="UTF-8"?>
2+
<jboss-web>
3+
<context-root>/tm-api</context-root>
4+
</jboss-web>

0 commit comments

Comments
 (0)