|
22 | 22 | <properties>
|
23 | 23 | <project.root>${basedir}/..</project.root>
|
24 | 24 | <dist.key>SDCASS</dist.key>
|
25 |
| - |
26 |
| - <!-- Observability --> |
27 |
| - <micrometer-docs-generator.inputPath>${maven.multiModuleProjectDirectory}/spring-data-cassandra/ |
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 | 25 | </properties>
|
33 | 26 |
|
34 | 27 | <build>
|
|
37 | 30 | <groupId>org.apache.maven.plugins</groupId>
|
38 | 31 | <artifactId>maven-assembly-plugin</artifactId>
|
39 | 32 | </plugin>
|
40 |
| - <plugin> |
41 |
| - <groupId>org.codehaus.mojo</groupId> |
42 |
| - <artifactId>exec-maven-plugin</artifactId> |
43 |
| - <executions> |
44 |
| - <execution> |
45 |
| - <id>generate-docs</id> |
46 |
| - <phase>generate-resources</phase> |
47 |
| - <goals> |
48 |
| - <goal>java</goal> |
49 |
| - </goals> |
50 |
| - <configuration> |
51 |
| - <mainClass>io.micrometer.docs.DocsGeneratorCommand</mainClass> |
52 |
| - <includePluginDependencies>true</includePluginDependencies> |
53 |
| - <arguments> |
54 |
| - <argument>${micrometer-docs-generator.inputPath}</argument> |
55 |
| - <argument>${micrometer-docs-generator.inclusionPattern}</argument> |
56 |
| - <argument>${micrometer-docs-generator.outputPath}</argument> |
57 |
| - </arguments> |
58 |
| - </configuration> |
59 |
| - </execution> |
60 |
| - </executions> |
61 |
| - <dependencies> |
62 |
| - <dependency> |
63 |
| - <groupId>io.micrometer</groupId> |
64 |
| - <artifactId>micrometer-docs-generator</artifactId> |
65 |
| - <version>${micrometer-docs-generator}</version> |
66 |
| - <type>jar</type> |
67 |
| - </dependency> |
68 |
| - </dependencies> |
69 |
| - </plugin> |
70 | 33 | <plugin>
|
71 | 34 | <groupId>org.asciidoctor</groupId>
|
72 | 35 | <artifactId>asciidoctor-maven-plugin</artifactId>
|
73 | 36 | </plugin>
|
74 | 37 | </plugins>
|
75 | 38 | </build>
|
76 | 39 |
|
77 |
| - <repositories> |
78 |
| - <repository> |
79 |
| - <id>spring-snapshots</id> |
80 |
| - <name>Spring Snapshots</name> |
81 |
| - <url>https://repo.spring.io/snapshot</url> <!-- For Snapshots --> |
82 |
| - <snapshots> |
83 |
| - <enabled>true</enabled> |
84 |
| - </snapshots> |
85 |
| - <releases> |
86 |
| - <enabled>false</enabled> |
87 |
| - </releases> |
88 |
| - </repository> |
89 |
| - <repository> |
90 |
| - <id>spring-milestones</id> |
91 |
| - <name>Spring Milestones</name> |
92 |
| - <url>https://repo.spring.io/milestone</url> <!-- For Milestones --> |
93 |
| - <snapshots> |
94 |
| - <enabled>false</enabled> |
95 |
| - </snapshots> |
96 |
| - </repository> |
97 |
| - <repository> |
98 |
| - <id>spring-release</id> |
99 |
| - <name>Spring Release</name> |
100 |
| - <url>https://repo.spring.io/release</url> <!-- For Releases --> |
101 |
| - <snapshots> |
102 |
| - <enabled>false</enabled> |
103 |
| - </snapshots> |
104 |
| - </repository> |
105 |
| - </repositories> |
106 |
| - |
107 | 40 | <pluginRepositories>
|
108 |
| - <pluginRepository> |
109 |
| - <id>spring-snapshots</id> |
110 |
| - <name>Spring Snapshots</name> |
111 |
| - <url>https://repo.spring.io/snapshot</url> <!-- For Snapshots --> |
112 |
| - <snapshots> |
113 |
| - <enabled>true</enabled> |
114 |
| - </snapshots> |
115 |
| - <releases> |
116 |
| - <enabled>false</enabled> |
117 |
| - </releases> |
118 |
| - </pluginRepository> |
119 |
| - <pluginRepository> |
120 |
| - <id>spring-milestones</id> |
121 |
| - <name>Spring Milestones</name> |
122 |
| - <url>https://repo.spring.io/milestone</url> <!-- For Milestones --> |
123 |
| - <snapshots> |
124 |
| - <enabled>false</enabled> |
125 |
| - </snapshots> |
126 |
| - </pluginRepository> |
127 | 41 | <pluginRepository>
|
128 | 42 | <id>spring-release</id>
|
129 | 43 | <name>Spring Release</name>
|
130 | 44 | <url>https://repo.spring.io/release</url> <!-- For Releases -->
|
131 |
| - <snapshots> |
132 |
| - <enabled>false</enabled> |
133 |
| - </snapshots> |
134 | 45 | </pluginRepository>
|
135 | 46 | </pluginRepositories>
|
136 |
| - |
137 | 47 | </project>
|
0 commit comments