|
1 | 1 | <?xml version="1.0" encoding="UTF-8"?> |
2 | | -<project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" |
| 2 | +<project xmlns="http://maven.apache.org/POM/4.0.0" |
| 3 | + xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" |
3 | 4 | xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 https://maven.apache.org/xsd/maven-4.0.0.xsd"> |
4 | 5 |
|
5 | | - <modelVersion>4.0.0</modelVersion> |
| 6 | + <modelVersion>4.0.0</modelVersion> |
6 | 7 |
|
7 | | - <artifactId>spring-data-mongodb-distribution</artifactId> |
| 8 | + <artifactId>spring-data-mongodb-distribution</artifactId> |
8 | 9 |
|
9 | | - <packaging>pom</packaging> |
| 10 | + <packaging>pom</packaging> |
10 | 11 |
|
11 | | - <name>Spring Data MongoDB - Distribution</name> |
12 | | - <description>Distribution build for Spring Data MongoDB</description> |
| 12 | + <name>Spring Data MongoDB - Distribution</name> |
| 13 | + <description>Distribution build for Spring Data MongoDB</description> |
13 | 14 |
|
14 | | - <parent> |
15 | | - <groupId>org.springframework.data</groupId> |
16 | | - <artifactId>spring-data-mongodb-parent</artifactId> |
17 | | - <version>4.0.0-SNAPSHOT</version> |
18 | | - <relativePath>../pom.xml</relativePath> |
19 | | - </parent> |
| 15 | + <parent> |
| 16 | + <groupId>org.springframework.data</groupId> |
| 17 | + <artifactId>spring-data-mongodb-parent</artifactId> |
| 18 | + <version>4.0.0-SNAPSHOT</version> |
| 19 | + <relativePath>../pom.xml</relativePath> |
| 20 | + </parent> |
20 | 21 |
|
21 | | - <properties> |
22 | | - <project.root>${basedir}/..</project.root> |
23 | | - <dist.key>SDMONGO</dist.key> |
| 22 | + <properties> |
| 23 | + <project.root>${basedir}/..</project.root> |
| 24 | + <dist.key>SDMONGO</dist.key> |
24 | 25 |
|
25 | | - <!-- Observability --> |
26 | | - <micrometer-docs-generator.version>1.0.0-SNAPSHOT</micrometer-docs-generator.version> |
27 | | - <micrometer-docs-generator.inputPath>${maven.multiModuleProjectDirectory}/spring-data-mongodb/ |
28 | | - </micrometer-docs-generator.inputPath> |
29 | | - <micrometer-docs-generator.inclusionPattern>.*</micrometer-docs-generator.inclusionPattern> |
30 | | - <micrometer-docs-generator.outputPath>${maven.multiModuleProjectDirectory}/target/ |
31 | | - </micrometer-docs-generator.outputPath> |
32 | | - </properties> |
| 26 | + <!-- Observability --> |
| 27 | + <micrometer-docs-generator.version>1.0.0-SNAPSHOT |
| 28 | + </micrometer-docs-generator.version> |
| 29 | + <micrometer-docs-generator.inputPath> |
| 30 | + ${maven.multiModuleProjectDirectory}/spring-data-mongodb/ |
| 31 | + </micrometer-docs-generator.inputPath> |
| 32 | + <micrometer-docs-generator.inclusionPattern>.* |
| 33 | + </micrometer-docs-generator.inclusionPattern> |
| 34 | + <micrometer-docs-generator.outputPath>${maven.multiModuleProjectDirectory}/target/ |
| 35 | + </micrometer-docs-generator.outputPath> |
| 36 | + </properties> |
33 | 37 |
|
34 | | - <build> |
35 | | - <plugins> |
36 | | - <plugin> |
37 | | - <groupId>org.apache.maven.plugins</groupId> |
38 | | - <artifactId>maven-assembly-plugin</artifactId> |
39 | | - </plugin> |
40 | | - <plugin> |
41 | | - <groupId>org.codehaus.mojo</groupId> |
42 | | - <artifactId>exec-maven-plugin</artifactId> |
43 | | - <executions> |
44 | | - <execution> |
45 | | - <id>generate-metrics-metadata</id> |
46 | | - <phase>prepare-package</phase> |
47 | | - <goals> |
48 | | - <goal>java</goal> |
49 | | - </goals> |
50 | | - <configuration> |
51 | | - <mainClass>io.micrometer.docs.metrics.DocsFromSources</mainClass> |
52 | | - </configuration> |
53 | | - </execution> |
54 | | - <execution> |
55 | | - <id>generate-tracing-metadata</id> |
56 | | - <phase>prepare-package</phase> |
57 | | - <goals> |
58 | | - <goal>java</goal> |
59 | | - </goals> |
60 | | - <configuration> |
61 | | - <mainClass>io.micrometer.docs.spans.DocsFromSources</mainClass> |
62 | | - </configuration> |
63 | | - </execution> |
64 | | - </executions> |
65 | | - <dependencies> |
66 | | - <dependency> |
67 | | - <groupId>io.micrometer</groupId> |
68 | | - <artifactId>micrometer-docs-generator-spans</artifactId> |
69 | | - <version>${micrometer-docs-generator.version}</version> |
70 | | - <type>jar</type> |
71 | | - </dependency> |
72 | | - <dependency> |
73 | | - <groupId>io.micrometer</groupId> |
74 | | - <artifactId>micrometer-docs-generator-metrics</artifactId> |
75 | | - <version>${micrometer-docs-generator.version}</version> |
76 | | - <type>jar</type> |
77 | | - </dependency> |
78 | | - </dependencies> |
79 | | - <configuration> |
80 | | - <includePluginDependencies>true</includePluginDependencies> |
81 | | - <arguments> |
82 | | - <argument>${micrometer-docs-generator.inputPath}</argument> |
83 | | - <argument>${micrometer-docs-generator.inclusionPattern}</argument> |
84 | | - <argument>${micrometer-docs-generator.outputPath}</argument> |
85 | | - </arguments> |
86 | | - </configuration> |
87 | | - </plugin> |
88 | | - <plugin> |
89 | | - <groupId>org.asciidoctor</groupId> |
90 | | - <artifactId>asciidoctor-maven-plugin</artifactId> |
91 | | - <configuration> |
92 | | - <attributes> |
93 | | - <mongo-reactivestreams>${mongo.reactivestreams}</mongo-reactivestreams> |
94 | | - <reactor>${reactor}</reactor> |
95 | | - </attributes> |
96 | | - </configuration> |
97 | | - </plugin> |
98 | | - </plugins> |
| 38 | + <build> |
| 39 | + <plugins> |
| 40 | + <plugin> |
| 41 | + <groupId>org.apache.maven.plugins</groupId> |
| 42 | + <artifactId>maven-assembly-plugin</artifactId> |
| 43 | + </plugin> |
| 44 | + <plugin> |
| 45 | + <groupId>org.codehaus.mojo</groupId> |
| 46 | + <artifactId>exec-maven-plugin</artifactId> |
| 47 | + <executions> |
| 48 | + <execution> |
| 49 | + <id>generate-metrics-metadata</id> |
| 50 | + <phase>prepare-package</phase> |
| 51 | + <goals> |
| 52 | + <goal>java</goal> |
| 53 | + </goals> |
| 54 | + <configuration> |
| 55 | + <mainClass>io.micrometer.docs.metrics.DocsFromSources |
| 56 | + </mainClass> |
| 57 | + </configuration> |
| 58 | + </execution> |
| 59 | + <execution> |
| 60 | + <id>generate-tracing-metadata</id> |
| 61 | + <phase>prepare-package</phase> |
| 62 | + <goals> |
| 63 | + <goal>java</goal> |
| 64 | + </goals> |
| 65 | + <configuration> |
| 66 | + <mainClass>io.micrometer.docs.spans.DocsFromSources |
| 67 | + </mainClass> |
| 68 | + </configuration> |
| 69 | + </execution> |
| 70 | + </executions> |
| 71 | + <dependencies> |
| 72 | + <dependency> |
| 73 | + <groupId>io.micrometer</groupId> |
| 74 | + <artifactId>micrometer-docs-generator-spans</artifactId> |
| 75 | + <version>${micrometer-docs-generator.version}</version> |
| 76 | + <type>jar</type> |
| 77 | + </dependency> |
| 78 | + <dependency> |
| 79 | + <groupId>io.micrometer</groupId> |
| 80 | + <artifactId>micrometer-docs-generator-metrics</artifactId> |
| 81 | + <version>${micrometer-docs-generator.version}</version> |
| 82 | + <type>jar</type> |
| 83 | + </dependency> |
| 84 | + </dependencies> |
| 85 | + <configuration> |
| 86 | + <includePluginDependencies>true</includePluginDependencies> |
| 87 | + <arguments> |
| 88 | + <argument>${micrometer-docs-generator.inputPath}</argument> |
| 89 | + <argument>${micrometer-docs-generator.inclusionPattern}</argument> |
| 90 | + <argument>${micrometer-docs-generator.outputPath}</argument> |
| 91 | + </arguments> |
| 92 | + </configuration> |
| 93 | + </plugin> |
| 94 | + <plugin> |
| 95 | + <groupId>org.asciidoctor</groupId> |
| 96 | + <artifactId>asciidoctor-maven-plugin</artifactId> |
| 97 | + <configuration> |
| 98 | + <attributes> |
| 99 | + <mongo-reactivestreams>${mongo.reactivestreams} |
| 100 | + </mongo-reactivestreams> |
| 101 | + <reactor>${reactor}</reactor> |
| 102 | + </attributes> |
| 103 | + </configuration> |
| 104 | + </plugin> |
| 105 | + </plugins> |
99 | 106 |
|
100 | | - </build> |
| 107 | + </build> |
101 | 108 |
|
102 | | - <repositories> |
103 | | - <repository> |
104 | | - <id>spring-snapshots</id> |
105 | | - <name>Spring Snapshots</name> |
106 | | - <url>https://repo.spring.io/snapshot</url> <!-- For Snapshots --> |
107 | | - <snapshots> |
108 | | - <enabled>true</enabled> |
109 | | - </snapshots> |
110 | | - <releases> |
111 | | - <enabled>false</enabled> |
112 | | - </releases> |
113 | | - </repository> |
114 | | - <repository> |
115 | | - <id>spring-milestones</id> |
116 | | - <name>Spring Milestones</name> |
117 | | - <url>https://repo.spring.io/milestone</url> <!-- For Milestones --> |
118 | | - <snapshots> |
119 | | - <enabled>false</enabled> |
120 | | - </snapshots> |
121 | | - </repository> |
122 | | - </repositories> |
| 109 | + <repositories> |
| 110 | + <repository> |
| 111 | + <id>spring-snapshots</id> |
| 112 | + <name>Spring Snapshots</name> |
| 113 | + <url>https://repo.spring.io/snapshot</url> <!-- For Snapshots --> |
| 114 | + <snapshots> |
| 115 | + <enabled>true</enabled> |
| 116 | + </snapshots> |
| 117 | + <releases> |
| 118 | + <enabled>false</enabled> |
| 119 | + </releases> |
| 120 | + </repository> |
| 121 | + <repository> |
| 122 | + <id>spring-milestones</id> |
| 123 | + <name>Spring Milestones</name> |
| 124 | + <url>https://repo.spring.io/milestone</url> <!-- For Milestones --> |
| 125 | + <snapshots> |
| 126 | + <enabled>false</enabled> |
| 127 | + </snapshots> |
| 128 | + </repository> |
| 129 | + </repositories> |
123 | 130 |
|
124 | | - <pluginRepositories> |
125 | | - <pluginRepository> |
126 | | - <id>spring-snapshots</id> |
127 | | - <name>Spring Snapshots</name> |
128 | | - <url>https://repo.spring.io/snapshot</url> <!-- For Snapshots --> |
129 | | - <snapshots> |
130 | | - <enabled>true</enabled> |
131 | | - </snapshots> |
132 | | - <releases> |
133 | | - <enabled>false</enabled> |
134 | | - </releases> |
135 | | - </pluginRepository> |
136 | | - <pluginRepository> |
137 | | - <id>spring-milestones</id> |
138 | | - <name>Spring Milestones</name> |
139 | | - <url>https://repo.spring.io/milestone</url> <!-- For Milestones --> |
140 | | - <snapshots> |
141 | | - <enabled>false</enabled> |
142 | | - </snapshots> |
143 | | - </pluginRepository> |
144 | | - </pluginRepositories> |
| 131 | + <pluginRepositories> |
| 132 | + <pluginRepository> |
| 133 | + <id>spring-snapshots</id> |
| 134 | + <name>Spring Snapshots</name> |
| 135 | + <url>https://repo.spring.io/snapshot</url> <!-- For Snapshots --> |
| 136 | + <snapshots> |
| 137 | + <enabled>true</enabled> |
| 138 | + </snapshots> |
| 139 | + <releases> |
| 140 | + <enabled>false</enabled> |
| 141 | + </releases> |
| 142 | + </pluginRepository> |
| 143 | + <pluginRepository> |
| 144 | + <id>spring-milestones</id> |
| 145 | + <name>Spring Milestones</name> |
| 146 | + <url>https://repo.spring.io/milestone</url> <!-- For Milestones --> |
| 147 | + <snapshots> |
| 148 | + <enabled>false</enabled> |
| 149 | + </snapshots> |
| 150 | + </pluginRepository> |
| 151 | + </pluginRepositories> |
145 | 152 |
|
146 | 153 | </project> |
0 commit comments