-
Notifications
You must be signed in to change notification settings - Fork 18
/
pom.xml
66 lines (62 loc) · 3.09 KB
/
pom.xml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
<?xml version="1.0" encoding="UTF-8"?>
<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 http://maven.apache.org/xsd/maven-4.0.0.xsd">
<modelVersion>4.0.0</modelVersion>
<parent>
<groupId>com.totvs.tjf</groupId>
<artifactId>tjf-boot-starter</artifactId>
<version>5.5.0-RELEASE</version>
<relativePath />
</parent>
<groupId>com.tjf.sample.github</groupId>
<artifactId>tjf-samples-parent</artifactId>
<version>0.0.1-SNAPSHOT</version>
<packaging>pom</packaging>
<name>tjf-samples-parent</name>
<description>TJF Samples Parent</description>
<modules>
<module>tjf-api-samples/tjf-api-context-sample</module>
<module>tjf-api-samples/tjf-api-core-fields-sample</module>
<module>tjf-api-samples/tjf-api-core-exception-sample</module>
<module>tjf-api-samples/tjf-api-jpa-filters-sample</module>
<module>tjf-api-samples/tjf-api-jpa-specification-sample</module>
<module>tjf-api-samples/tjf-api-jpa-querybyexample-sample</module>
<module>tjf-core-samples/tjf-core-validation-sample</module>
<module>tjf-core-samples/tjf-core-money-sample</module>
<module>tjf-core-samples/tjf-core-i18n-sample</module>
<module>tjf-messaging-samples/tjf-messaging-amqp-sample/tjf-messaging-amqp-publisher</module>
<module>tjf-messaging-samples/tjf-messaging-amqp-sample/tjf-messaging-amqp-subscriber</module>
<module>tjf-messaging-samples/tjf-messaging-stream-function-sample/tjf-messaging-stream-publisher-sample</module>
<module>tjf-messaging-samples/tjf-messaging-stream-function-sample/tjf-messaging-stream-subscriber-sample</module>
<module>tjf-messaging-samples/tjf-messaging-stream-error-queue-sample</module>
<module>tjf-domain-samples/tjf-domain-jpa-sample</module>
<module>tjf-metrics-samples/tjf-metrics-micrometer-customized-metrics-sample</module>
<module>tjf-metrics-samples/tjf-metrics-lscloud-sample</module>
<module>tjf-migration-samples/tjf-migration-schema-sample</module>
<module>tjf-repository-samples/tjf-repository-aggregate-sample</module>
<!-- module>tjf-repository-samples/tjf-repository-multidb-sample</module -->
<module>tjf-security-samples/tjf-security-web-request-validation-sample</module>
<module>tjf-security-samples/tjf-security-web-sample</module>
<module>tjf-storage-samples/tjf-storage-google-sample</module>
<module>tjf-tenant-samples/tjf-tenant-discriminator-sample</module>
<module>tjf-tenant-samples/tjf-tenant-schema-sample</module>
<!-- TJF-2267 - module>tjf-sgdp-samples/tjf-sgdp-app-sample</module -->
<!-- TJF-2267 - module>tjf-sgdp-samples/tjf-sgdp-service-sample</module -->
<!--<module>tjf-osgi-samples/tjf-osgi-sample</module>-->
<!--module>tjf-maven-plugin-samples/tjf-plugin-openapi</module-->
<!-- module>tjf-developers/tjf-messaging</module -->
</modules>
<repositories>
<repository>
<id>tjf</id>
<url>https://totvstfs.pkgs.visualstudio.com/TJF/_packaging/tjf/maven/v1</url>
<releases>
<enabled>true</enabled>
</releases>
<snapshots>
<enabled>true</enabled>
</snapshots>
</repository>
</repositories>
</project>