|
9 | 9 | </parent> |
10 | 10 | <groupId>io.mosip</groupId> |
11 | 11 | <artifactId>mimoto</artifactId> |
12 | | - <version>0.2.0-SNAPSHOT</version> |
| 12 | + <version>1.2.0-SNAPSHOT</version> |
13 | 13 | <name>mimoto</name> |
14 | 14 | <description>Mobile server backend supporting Inji.</description> |
15 | 15 |
|
|
50 | 50 | <logback.version>1.2.3</logback.version> |
51 | 51 |
|
52 | 52 | <!-- json --> |
53 | | - <jackson.version>2.13.1</jackson.version> |
| 53 | + <jackson.version>2.13.2</jackson.version> |
| 54 | + <!-- jackson-databind security patch version --> |
| 55 | + <jackson.databind.version>2.13.2.2</jackson.databind.version> |
54 | 56 | <json.utility.version>20180130</json.utility.version> |
55 | 57 | <json.schema.validator.version>2.2.10</json.schema.validator.version> |
56 | 58 | <json.version>20180813</json.version> |
|
192 | 194 | <dependency> |
193 | 195 | <groupId>ch.qos.logback</groupId> |
194 | 196 | <artifactId>logback-core</artifactId> |
195 | | - <version>1.2.6</version> |
| 197 | + <version>1.2.9</version> |
196 | 198 | </dependency> |
197 | 199 | <dependency> |
198 | 200 | <groupId>joda-time</groupId> |
|
238 | 240 | <dependency> |
239 | 241 | <groupId>com.fasterxml.jackson.core</groupId> |
240 | 242 | <artifactId>jackson-databind</artifactId> |
241 | | - <version>${jackson.version}</version> |
| 243 | + <version>${jackson.databind.version}</version> |
242 | 244 | </dependency> |
243 | 245 | <dependency> |
244 | 246 | <groupId>com.fasterxml.jackson.core</groupId> |
|
513 | 515 | </executions> |
514 | 516 | </plugin> |
515 | 517 | <plugin> |
516 | | - <groupId>pl.project13.maven</groupId> |
517 | | - <artifactId>git-commit-id-plugin</artifactId> |
518 | | - <version>3.0.1</version> |
| 518 | + <groupId>io.github.git-commit-id</groupId> |
| 519 | + <artifactId>git-commit-id-maven-plugin</artifactId> |
| 520 | + <version>5.0.0</version> |
519 | 521 | <executions> |
520 | 522 | <execution> |
521 | 523 | <id>get-the-git-infos</id> |
|
527 | 529 | </executions> |
528 | 530 | <configuration> |
529 | 531 | <generateGitPropertiesFile>true</generateGitPropertiesFile> |
530 | | - <generateGitPropertiesFilename>${project.build.outputDirectory}/git.properties</generateGitPropertiesFilename> |
| 532 | + <generateGitPropertiesFilename>${project.build.outputDirectory}/build.json</generateGitPropertiesFilename> |
531 | 533 | <includeOnlyProperties> |
532 | 534 | <includeOnlyProperty>^git.build.(time|version)$</includeOnlyProperty> |
533 | 535 | <includeOnlyProperty>^git.commit.id.(abbrev|full)$</includeOnlyProperty> |
| 536 | + <includeOnlyProperty>^git.branch$</includeOnlyProperty> |
534 | 537 | </includeOnlyProperties> |
535 | 538 | <commitIdGenerationMode>full</commitIdGenerationMode> |
536 | | - <dotGitDirectory>${project.basedir}/.git</dotGitDirectory> |
537 | | - <!-- <format>json</format> --> |
538 | | - </configuration> |
539 | | - </plugin> |
540 | | - </plugins> |
541 | | - </build> |
542 | | - <profiles> |
543 | | - <profile> |
544 | | - <id>sonar</id> |
545 | | - <properties> |
546 | | - <sonar.sources>.</sonar.sources> |
547 | | - <sonar.inclusions>src/main/java/**,src/main/resources/**</sonar.inclusions> |
548 | | - <sonar.exclusions>${sonar.coverage.exclusions}</sonar.exclusions> |
549 | | - <sonar.host.url>https://sonarcloud.io</sonar.host.url> |
550 | | - </properties> |
551 | | - <activation> |
552 | | - <activeByDefault>false</activeByDefault> |
553 | | - </activation> |
554 | | - <build> |
555 | | - <plugins> |
556 | | - <plugin> |
557 | | - <groupId>org.sonarsource.scanner.maven</groupId> |
558 | | - <artifactId>sonar-maven-plugin</artifactId> |
559 | | - <version>${maven.sonar.plugin.version}</version> |
560 | | - <executions> |
561 | | - <execution> |
562 | | - <phase>verify</phase> |
563 | | - <goals> |
564 | | - <goal>sonar</goal> |
565 | | - </goals> |
566 | | - </execution> |
567 | | - </executions> |
568 | | - </plugin> |
569 | | - </plugins> |
570 | | - </build> |
571 | | - </profile> |
572 | | - </profiles> |
| 539 | + <format>json</format> |
| 540 | + </configuration> |
| 541 | + </plugin> |
| 542 | + </plugins> |
| 543 | + </build> |
| 544 | + <profiles> |
| 545 | + <profile> |
| 546 | + <id>sonar</id> |
| 547 | + <properties> |
| 548 | + <sonar.sources>.</sonar.sources> |
| 549 | + <sonar.inclusions>src/main/java/**,src/main/resources/**</sonar.inclusions> |
| 550 | + <sonar.exclusions>${sonar.coverage.exclusions}</sonar.exclusions> |
| 551 | + <sonar.host.url>https://sonarcloud.io</sonar.host.url> |
| 552 | + </properties> |
| 553 | + <activation> |
| 554 | + <activeByDefault>false</activeByDefault> |
| 555 | + </activation> |
| 556 | + <build> |
| 557 | + <plugins> |
| 558 | + <plugin> |
| 559 | + <groupId>org.sonarsource.scanner.maven</groupId> |
| 560 | + <artifactId>sonar-maven-plugin</artifactId> |
| 561 | + <version>${maven.sonar.plugin.version}</version> |
| 562 | + <executions> |
| 563 | + <execution> |
| 564 | + <phase>verify</phase> |
| 565 | + <goals> |
| 566 | + <goal>sonar</goal> |
| 567 | + </goals> |
| 568 | + </execution> |
| 569 | + </executions> |
| 570 | + </plugin> |
| 571 | + </plugins> |
| 572 | + </build> |
| 573 | + </profile> |
| 574 | + </profiles> |
573 | 575 |
|
574 | | - </project> |
| 576 | +</project> |
0 commit comments