|
92 | 92 | </dependencyManagement>
|
93 | 93 |
|
94 | 94 | <dependencies>
|
| 95 | + <!-- Maven Core --> |
95 | 96 | <dependency>
|
96 | 97 | <groupId>org.apache.maven</groupId>
|
97 | 98 | <artifactId>maven-plugin-api</artifactId>
|
|
110 | 111 | <version>${mavenVersion}</version>
|
111 | 112 | <scope>provided</scope>
|
112 | 113 | </dependency>
|
| 114 | + |
| 115 | + <!-- plugins annotations --> |
113 | 116 | <dependency>
|
114 |
| - <groupId>org.apache.maven</groupId> |
115 |
| - <artifactId>maven-model</artifactId> |
116 |
| - <version>${mavenVersion}</version> |
| 117 | + <groupId>org.apache.maven.plugin-tools</groupId> |
| 118 | + <artifactId>maven-plugin-annotations</artifactId> |
117 | 119 | <scope>provided</scope>
|
118 | 120 | </dependency>
|
| 121 | + |
| 122 | + <!-- Maven shared --> |
119 | 123 | <dependency>
|
120 | 124 | <groupId>org.apache.maven.shared</groupId>
|
121 | 125 | <artifactId>file-management</artifactId>
|
|
126 | 130 | <artifactId>maven-archiver</artifactId>
|
127 | 131 | <version>${mavenArchiverVersion}</version>
|
128 | 132 | </dependency>
|
129 |
| - <!-- dependencies to annotations --> |
| 133 | + |
| 134 | + <!-- plexus --> |
130 | 135 | <dependency>
|
131 |
| - <groupId>org.apache.maven.plugin-tools</groupId> |
132 |
| - <artifactId>maven-plugin-annotations</artifactId> |
133 |
| - <scope>provided</scope> |
| 136 | + <groupId>org.codehaus.plexus</groupId> |
| 137 | + <artifactId>plexus-utils</artifactId> |
| 138 | + </dependency> |
| 139 | + <dependency> |
| 140 | + <groupId>org.codehaus.plexus</groupId> |
| 141 | + <artifactId>plexus-archiver</artifactId> |
| 142 | + <version>4.9.2</version> |
| 143 | + </dependency> |
| 144 | + |
| 145 | + <!-- Other used dependencies --> |
| 146 | + <dependency> |
| 147 | + <groupId>javax.inject</groupId> |
| 148 | + <artifactId>javax.inject</artifactId> |
| 149 | + <version>1</version> |
| 150 | + </dependency> |
| 151 | + <dependency> |
| 152 | + <groupId>org.slf4j</groupId> |
| 153 | + <artifactId>slf4j-api</artifactId> |
| 154 | + <version>1.7.36</version> |
134 | 155 | </dependency>
|
135 | 156 |
|
136 | 157 | <!-- Test -->
|
|
0 commit comments