|
7 | 7 |
|
8 | 8 | <groupId>net.juniper.netconf</groupId> |
9 | 9 | <artifactId>netconf-java</artifactId> |
10 | | - <version>2.1.1.6-SNAPSHOT</version> |
| 10 | + <version>2.1.1.6.2-eks</version> |
11 | 11 | <packaging>jar</packaging> |
12 | 12 |
|
13 | 13 | <properties> |
|
67 | 67 | </plugin> |
68 | 68 |
|
69 | 69 | <plugin> |
70 | | - <groupId>org.apache.maven.plugins</groupId> |
71 | 70 | <artifactId>maven-surefire-plugin</artifactId> |
72 | 71 | <version>3.0.0-M3</version> |
73 | 72 | <configuration> |
74 | 73 | <redirectTestOutputToFile>true</redirectTestOutputToFile> |
75 | 74 | </configuration> |
76 | 75 | </plugin> |
77 | 76 |
|
| 77 | + <plugin> |
| 78 | + <groupId>org.projectlombok</groupId> |
| 79 | + <artifactId>lombok-maven-plugin</artifactId> |
| 80 | + <version>1.18.20.0</version> |
| 81 | + <executions> |
| 82 | + <execution> |
| 83 | + <phase>generate-sources</phase> |
| 84 | + <goals> |
| 85 | + <goal>delombok</goal> |
| 86 | + </goals> |
| 87 | + </execution> |
| 88 | + </executions> |
| 89 | + <configuration> |
| 90 | + <sourceDirectory>src/main/java</sourceDirectory> |
| 91 | + <outputDirectory>${project.build.directory}/delombok</outputDirectory> |
| 92 | + <addOutputDirectory>false</addOutputDirectory> |
| 93 | + <encoding>UTF-8</encoding> |
| 94 | + </configuration> |
| 95 | + </plugin> |
| 96 | + |
| 97 | + <plugin> |
| 98 | + <artifactId>maven-resources-plugin</artifactId> |
| 99 | + <version>3.2.0</version> |
| 100 | + <executions> |
| 101 | + <execution> |
| 102 | + <id>copy-to-lombok-build</id> |
| 103 | + <phase>process-resources</phase> |
| 104 | + <goals> |
| 105 | + <goal>copy-resources</goal> |
| 106 | + </goals> |
| 107 | + <configuration> |
| 108 | + <resources> |
| 109 | + <resource> |
| 110 | + <directory>${project.basedir}/src/main/resources</directory> |
| 111 | + </resource> |
| 112 | + </resources> |
| 113 | + <outputDirectory>${project.build.directory}/delombok</outputDirectory> |
| 114 | + </configuration> |
| 115 | + </execution> |
| 116 | + </executions> |
| 117 | + </plugin> |
| 118 | + |
| 119 | + <plugin> |
| 120 | + <artifactId>maven-antrun-plugin</artifactId> |
| 121 | + <version>1.8</version> |
| 122 | + <executions> |
| 123 | + <execution> |
| 124 | + <id>generate-delomboked-sources-jar</id> |
| 125 | + <phase>package</phase> |
| 126 | + <goals> |
| 127 | + <goal>run</goal> |
| 128 | + </goals> |
| 129 | + <configuration> |
| 130 | + <target> |
| 131 | + <jar destfile="${project.build.directory}/${project.build.finalName}-sources.jar" |
| 132 | + basedir="${project.build.directory}/delombok"/> |
| 133 | + </target> |
| 134 | + </configuration> |
| 135 | + </execution> |
| 136 | + </executions> |
| 137 | + </plugin> |
| 138 | + |
| 139 | + <plugin> |
| 140 | + <artifactId>maven-install-plugin</artifactId> |
| 141 | + <version>2.5.2</version> |
| 142 | + <executions> |
| 143 | + <execution> |
| 144 | + <id>install-source-jar</id> |
| 145 | + <goals> |
| 146 | + <goal>install-file</goal> |
| 147 | + </goals> |
| 148 | + <phase>install</phase> |
| 149 | + <configuration> |
| 150 | + <file>${project.build.directory}/${project.build.finalName}-sources.jar</file> |
| 151 | + <groupId>${project.groupId}</groupId> |
| 152 | + <artifactId>${project.artifactId}</artifactId> |
| 153 | + <version>${project.version}</version> |
| 154 | + <classifier>sources</classifier> |
| 155 | + <generatePom>true</generatePom> |
| 156 | + <pomFile>${project.basedir}/pom.xml</pomFile> |
| 157 | + </configuration> |
| 158 | + </execution> |
| 159 | + </executions> |
| 160 | + </plugin> |
| 161 | + |
78 | 162 | <plugin> |
79 | 163 | <artifactId>maven-compiler-plugin</artifactId> |
80 | 164 | <version>3.8.0</version> |
81 | 165 | <configuration> |
82 | 166 | <source>1.8</source> |
83 | 167 | <target>1.8</target> |
| 168 | + <annotationProcessorPaths> |
| 169 | + <path> |
| 170 | + <groupId>org.projectlombok</groupId> |
| 171 | + <artifactId>lombok</artifactId> |
| 172 | + <version>1.18.22</version> |
| 173 | + </path> |
| 174 | + </annotationProcessorPaths> |
84 | 175 | <compilerArgs> |
85 | 176 | <arg>-J--add-opens=jdk.compiler/com.sun.tools.javac.code=ALL-UNNAMED</arg> |
86 | 177 | <arg>-J--add-opens=jdk.compiler/com.sun.tools.javac.comp=ALL-UNNAMED</arg> |
|
96 | 187 | </configuration> |
97 | 188 | </plugin> |
98 | 189 | <plugin> |
99 | | - <groupId>org.apache.maven.plugins</groupId> |
100 | 190 | <artifactId>maven-source-plugin</artifactId> |
101 | 191 | <version>3.2.1</version> |
102 | 192 | <executions> |
|
109 | 199 | </executions> |
110 | 200 | </plugin> |
111 | 201 | <plugin> |
112 | | - <groupId>org.apache.maven.plugins</groupId> |
113 | 202 | <artifactId>maven-javadoc-plugin</artifactId> |
114 | 203 | <version>3.2.0</version> |
115 | 204 | <executions> |
|
149 | 238 | <reporting> |
150 | 239 | <plugins> |
151 | 240 | <plugin> |
152 | | - <groupId>org.apache.maven.plugins</groupId> |
153 | 241 | <artifactId>maven-javadoc-plugin</artifactId> |
154 | 242 | <version>3.2.0</version> |
155 | 243 | <configuration> |
|
169 | 257 | <groupId>org.projectlombok</groupId> |
170 | 258 | <artifactId>lombok</artifactId> |
171 | 259 | <scope>provided</scope> |
172 | | - <version>1.18.6</version> |
| 260 | + <version>1.18.22</version> |
173 | 261 | </dependency> |
174 | 262 | <dependency> |
175 | 263 | <groupId>org.slf4j</groupId> |
|
0 commit comments