|
2 | 2 | xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd"> |
3 | 3 | <modelVersion>4.0.0</modelVersion> |
4 | 4 |
|
5 | | - <groupId>org.fugerit.java</groupId> |
6 | 5 | <artifactId>yaml-doc-maven-plugin</artifactId> |
7 | 6 |
|
8 | | - <version>0.2.4</version> |
| 7 | + <parent> |
| 8 | + <groupId>org.fugerit.java</groupId> |
| 9 | + <artifactId>fj-bom</artifactId> |
| 10 | + <version>0.2.3</version> |
| 11 | + <relativePath></relativePath> |
| 12 | + </parent> |
| 13 | + |
| 14 | + <version>0.3.0</version> |
9 | 15 | <packaging>maven-plugin</packaging> |
10 | 16 |
|
11 | 17 | <name>yaml-doc-maven-plugin</name> |
|
22 | 28 | <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding> |
23 | 29 | <maven.compiler.target>1.8</maven.compiler.target> |
24 | 30 | <maven.compiler.source>1.8</maven.compiler.source> |
| 31 | + <yaml-doc-version>${project.version}</yaml-doc-version> |
25 | 32 | </properties> |
26 | 33 |
|
27 | 34 | <licenses> |
|
59 | 66 | <dependency> |
60 | 67 | <groupId>org.apache.maven</groupId> |
61 | 68 | <artifactId>maven-plugin-api</artifactId> |
62 | | - <version>3.8.5</version> |
| 69 | + <scope>provided</scope> |
63 | 70 | </dependency> |
64 | 71 |
|
65 | 72 | <dependency> |
66 | 73 | <groupId>org.apache.maven.plugin-tools</groupId> |
67 | 74 | <artifactId>maven-plugin-annotations</artifactId> |
68 | | - <version>3.6.4</version> |
| 75 | + <scope>provided</scope> |
69 | 76 | </dependency> |
70 | 77 |
|
71 | 78 | <dependency> |
72 | 79 | <groupId>org.fugerit.java</groupId> |
73 | 80 | <artifactId>yaml-doc-tool</artifactId> |
74 | | - <version>${project.version}</version> |
75 | | - </dependency> |
76 | | - |
77 | | - <!-- logging --> |
78 | | - <dependency> |
79 | | - <groupId>org.apache.logging.log4j</groupId> |
80 | | - <artifactId>log4j-core</artifactId> |
81 | | - <version>2.17.0</version> |
| 81 | + <version>${yaml-doc-version}</version> |
82 | 82 | </dependency> |
83 | 83 | <dependency> |
84 | 84 | <groupId>org.slf4j</groupId> |
85 | 85 | <artifactId>slf4j-api</artifactId> |
86 | | - <version>1.6.4</version> |
87 | 86 | <scope>compile</scope> |
88 | 87 | </dependency> |
89 | | - <dependency> |
90 | | - <groupId>org.apache.logging.log4j</groupId> |
91 | | - <artifactId>log4j-slf4j-impl</artifactId> |
92 | | - <version>2.13.1</version> |
93 | | - </dependency> |
94 | | - |
95 | | - <dependency> |
96 | | - <groupId>org.hsqldb</groupId> |
97 | | - <artifactId>hsqldb</artifactId> |
98 | | - <version>2.3.4</version> |
99 | | - <scope>test</scope> |
100 | | - </dependency> |
101 | | - |
102 | | - <dependency> |
103 | | - <groupId>junit</groupId> |
104 | | - <artifactId>junit</artifactId> |
105 | | - <version>4.13.1</version> |
106 | | - <scope>test</scope> |
107 | | - </dependency> |
108 | 88 |
|
109 | 89 | </dependencies> |
110 | 90 |
|
|
115 | 95 | <plugin> |
116 | 96 | <groupId>org.apache.maven.plugins</groupId> |
117 | 97 | <artifactId>maven-plugin-plugin</artifactId> |
118 | | - <version>3.6.0</version> |
119 | 98 | <executions> |
120 | 99 | <execution> |
121 | 100 | <id>default-descriptor</id> |
|
132 | 111 | </executions> |
133 | 112 | </plugin> |
134 | 113 |
|
135 | | - <plugin> |
136 | | - <groupId>org.apache.maven.plugins</groupId> |
137 | | - <artifactId>maven-source-plugin</artifactId> |
138 | | - <version>3.0.1</version> |
139 | | - <executions> |
140 | | - <execution> |
141 | | - <id>attach-sources</id> |
142 | | - <goals> |
143 | | - <goal>jar</goal> |
144 | | - </goals> |
145 | | - </execution> |
146 | | - </executions> |
147 | | - </plugin> |
148 | | - <plugin> |
149 | | - <groupId>org.apache.maven.plugins</groupId> |
150 | | - <artifactId>maven-javadoc-plugin</artifactId> |
151 | | - <version>2.10.4</version> |
152 | | - <configuration> |
153 | | - <stylesheetfile>src/main/javadoc/stylesheet.css</stylesheetfile> |
154 | | - </configuration> |
155 | | - <executions> |
156 | | - <execution> |
157 | | - <id>attach-javadocs</id> |
158 | | - <goals> |
159 | | - <goal>jar</goal> |
160 | | - </goals> |
161 | | - </execution> |
162 | | - </executions> |
163 | | - </plugin> |
164 | | - |
165 | 114 | </plugins> |
166 | 115 |
|
167 | 116 | </build> |
|
0 commit comments