Thomas Wolf | 488d955 | 2018-09-23 16:45:45 +0200 | [diff] [blame] | 1 | <?xml version="1.0" encoding="UTF-8"?> |
| 2 | <!-- |
Matthias Sohn | 5c5f7c6 | 2020-01-04 00:50:50 +0100 | [diff] [blame] | 3 | Copyright (C) 2018, Thomas Wolf <thomas.wolf@paranor.ch> and others |
Thomas Wolf | 488d955 | 2018-09-23 16:45:45 +0200 | [diff] [blame] | 4 | |
Matthias Sohn | 5c5f7c6 | 2020-01-04 00:50:50 +0100 | [diff] [blame] | 5 | This program and the accompanying materials are made available under the |
| 6 | terms of the Eclipse Distribution License v. 1.0 which is available at |
| 7 | http://www.eclipse.org/org/documents/edl-v10.php. |
Thomas Wolf | 488d955 | 2018-09-23 16:45:45 +0200 | [diff] [blame] | 8 | |
Matthias Sohn | 5c5f7c6 | 2020-01-04 00:50:50 +0100 | [diff] [blame] | 9 | SPDX-License-Identifier: BSD-3-Clause |
Thomas Wolf | 488d955 | 2018-09-23 16:45:45 +0200 | [diff] [blame] | 10 | --> |
| 11 | |
| 12 | <project xmlns="http://maven.apache.org/POM/4.0.0" |
| 13 | xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" |
| 14 | xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/maven-v4_0_0.xsd"> |
| 15 | <modelVersion>4.0.0</modelVersion> |
| 16 | |
| 17 | <parent> |
| 18 | <groupId>org.eclipse.jgit</groupId> |
| 19 | <artifactId>org.eclipse.jgit-parent</artifactId> |
Matthias Sohn | d0a2288 | 2024-06-03 23:10:25 +0200 | [diff] [blame^] | 20 | <version>6.10.0.202406032110-r</version> |
Thomas Wolf | 488d955 | 2018-09-23 16:45:45 +0200 | [diff] [blame] | 21 | </parent> |
| 22 | |
| 23 | <artifactId>org.eclipse.jgit.ssh.apache</artifactId> |
| 24 | <name>JGit - Apache sshd-based SSH support</name> |
| 25 | |
| 26 | <description> |
| 27 | SSH support for JGit based on Apache MINA sshd |
| 28 | </description> |
| 29 | |
| 30 | <properties> |
| 31 | <translate-qualifier/> |
Thomas Wolf | 9b31969 | 2018-11-01 11:28:15 +0100 | [diff] [blame] | 32 | <source-bundle-manifest>${project.build.directory}/META-INF/SOURCE-MANIFEST.MF</source-bundle-manifest> |
Thomas Wolf | db627c4 | 2018-11-19 23:11:13 +0100 | [diff] [blame] | 33 | <eddsa-version>0.3.0</eddsa-version> |
Thomas Wolf | 488d955 | 2018-09-23 16:45:45 +0200 | [diff] [blame] | 34 | </properties> |
| 35 | |
| 36 | <dependencies> |
| 37 | <dependency> |
| 38 | <groupId>org.eclipse.jgit</groupId> |
| 39 | <artifactId>org.eclipse.jgit</artifactId> |
| 40 | <version>${project.version}</version> |
| 41 | </dependency> |
| 42 | |
| 43 | <dependency> |
| 44 | <groupId>org.apache.sshd</groupId> |
Thomas Wolf | 86cee68 | 2019-01-14 17:30:03 +0100 | [diff] [blame] | 45 | <artifactId>sshd-osgi</artifactId> |
Thomas Wolf | 488d955 | 2018-09-23 16:45:45 +0200 | [diff] [blame] | 46 | <version>${apache-sshd-version}</version> |
| 47 | </dependency> |
| 48 | |
| 49 | <dependency> |
| 50 | <groupId>org.apache.sshd</groupId> |
| 51 | <artifactId>sshd-sftp</artifactId> |
| 52 | <version>${apache-sshd-version}</version> |
Thomas Wolf | 913e6cf | 2023-04-03 19:33:24 +0200 | [diff] [blame] | 53 | <exclusions> |
| 54 | <exclusion> |
| 55 | <groupId>org.apache.sshd</groupId> |
| 56 | <artifactId>sshd-common</artifactId> |
| 57 | </exclusion> |
| 58 | <exclusion> |
| 59 | <groupId>org.apache.sshd</groupId> |
| 60 | <artifactId>sshd-core</artifactId> |
| 61 | </exclusion> |
| 62 | </exclusions> |
Thomas Wolf | 488d955 | 2018-09-23 16:45:45 +0200 | [diff] [blame] | 63 | </dependency> |
| 64 | |
| 65 | <dependency> |
Thomas Wolf | db627c4 | 2018-11-19 23:11:13 +0100 | [diff] [blame] | 66 | <groupId>net.i2p.crypto</groupId> |
| 67 | <artifactId>eddsa</artifactId> |
| 68 | <version>${eddsa-version}</version> |
| 69 | </dependency> |
| 70 | |
| 71 | <dependency> |
Thomas Wolf | 488d955 | 2018-09-23 16:45:45 +0200 | [diff] [blame] | 72 | <groupId>org.slf4j</groupId> |
| 73 | <artifactId>slf4j-api</artifactId> |
| 74 | </dependency> |
| 75 | </dependencies> |
| 76 | |
Thomas Wolf | 9b31969 | 2018-11-01 11:28:15 +0100 | [diff] [blame] | 77 | <build> |
| 78 | <sourceDirectory>src/</sourceDirectory> |
Thomas Wolf | 488d955 | 2018-09-23 16:45:45 +0200 | [diff] [blame] | 79 | |
Thomas Wolf | 9b31969 | 2018-11-01 11:28:15 +0100 | [diff] [blame] | 80 | <resources> |
| 81 | <resource> |
| 82 | <directory>.</directory> |
| 83 | <includes> |
| 84 | <include>plugin.properties</include> |
| 85 | <include>about.html</include> |
| 86 | </includes> |
| 87 | </resource> |
| 88 | <resource> |
| 89 | <directory>resources/</directory> |
| 90 | </resource> |
| 91 | </resources> |
Thomas Wolf | 488d955 | 2018-09-23 16:45:45 +0200 | [diff] [blame] | 92 | |
Thomas Wolf | 9b31969 | 2018-11-01 11:28:15 +0100 | [diff] [blame] | 93 | <plugins> |
| 94 | <plugin> |
| 95 | <groupId>org.apache.maven.plugins</groupId> |
| 96 | <artifactId>maven-antrun-plugin</artifactId> |
| 97 | <executions> |
| 98 | <execution> |
| 99 | <id>translate-source-qualifier</id> |
| 100 | <phase>generate-resources</phase> |
| 101 | <configuration> |
| 102 | <target> |
| 103 | <copy file="META-INF/SOURCE-MANIFEST.MF" tofile="${source-bundle-manifest}" overwrite="true" /> |
| 104 | <replace file="${source-bundle-manifest}"> |
Matthias Sohn | 6007371 | 2023-10-06 01:10:40 +0200 | [diff] [blame] | 105 | <replacefilter token=".qualifier" value=".${commit.time.version}" /> |
Thomas Wolf | 9b31969 | 2018-11-01 11:28:15 +0100 | [diff] [blame] | 106 | </replace> |
| 107 | </target> |
| 108 | </configuration> |
| 109 | <goals> |
| 110 | <goal>run</goal> |
| 111 | </goals> |
| 112 | </execution> |
| 113 | </executions> |
| 114 | </plugin> |
| 115 | |
| 116 | <plugin> |
| 117 | <groupId>org.apache.maven.plugins</groupId> |
Thomas Wolf | ff3c3d8 | 2021-10-24 21:32:33 +0200 | [diff] [blame] | 118 | <artifactId>maven-source-plugin</artifactId> |
| 119 | <inherited>true</inherited> |
| 120 | <executions> |
| 121 | <execution> |
| 122 | <id>attach-sources</id> |
| 123 | <phase>process-classes</phase> |
| 124 | <goals> |
| 125 | <goal>jar</goal> |
| 126 | </goals> |
Thomas Wolf | 9b31969 | 2018-11-01 11:28:15 +0100 | [diff] [blame] | 127 | <configuration> |
| 128 | <archive> |
| 129 | <manifestFile>${source-bundle-manifest}</manifestFile> |
| 130 | </archive> |
| 131 | </configuration> |
| 132 | </execution> |
| 133 | </executions> |
| 134 | </plugin> |
| 135 | |
| 136 | <plugin> |
| 137 | <artifactId>maven-jar-plugin</artifactId> |
| 138 | <configuration> |
| 139 | <archive> |
| 140 | <manifestFile>${bundle-manifest}</manifestFile> |
| 141 | </archive> |
| 142 | </configuration> |
| 143 | </plugin> |
Thomas Wolf | 488d955 | 2018-09-23 16:45:45 +0200 | [diff] [blame] | 144 | |
| 145 | <plugin> |
| 146 | <groupId>com.github.siom79.japicmp</groupId> |
| 147 | <artifactId>japicmp-maven-plugin</artifactId> |
| 148 | <version>${japicmp-version}</version> |
| 149 | <configuration> |
| 150 | <oldVersion> |
| 151 | <dependency> |
| 152 | <groupId>${project.groupId}</groupId> |
| 153 | <artifactId>${project.artifactId}</artifactId> |
| 154 | <version>${jgit-last-release-version}</version> |
| 155 | </dependency> |
| 156 | </oldVersion> |
| 157 | <newVersion> |
| 158 | <file> |
| 159 | <path>${project.build.directory}/${project.artifactId}-${project.version}.jar</path> |
| 160 | </file> |
| 161 | </newVersion> |
| 162 | <parameter> |
| 163 | <onlyModified>true</onlyModified> |
| 164 | <includes> |
| 165 | <include>org.eclipse.jgit.*</include> |
| 166 | </includes> |
Thomas Wolf | 709087c | 2021-12-27 11:32:15 +0100 | [diff] [blame] | 167 | <excludes> |
| 168 | <exclude>*.internal.*</exclude> |
| 169 | </excludes> |
Thomas Wolf | 488d955 | 2018-09-23 16:45:45 +0200 | [diff] [blame] | 170 | <accessModifier>public</accessModifier> |
| 171 | <breakBuildOnModifications>false</breakBuildOnModifications> |
| 172 | <breakBuildOnBinaryIncompatibleModifications>false</breakBuildOnBinaryIncompatibleModifications> |
| 173 | <onlyBinaryIncompatible>false</onlyBinaryIncompatible> |
| 174 | <includeSynthetic>false</includeSynthetic> |
| 175 | <ignoreMissingClasses>false</ignoreMissingClasses> |
| 176 | <skipPomModules>true</skipPomModules> |
| 177 | </parameter> |
Thomas Wolf | e71e006 | 2018-12-15 20:27:34 +0100 | [diff] [blame] | 178 | <skip>false</skip> |
Thomas Wolf | 488d955 | 2018-09-23 16:45:45 +0200 | [diff] [blame] | 179 | </configuration> |
| 180 | <executions> |
| 181 | <execution> |
| 182 | <phase>verify</phase> |
| 183 | <goals> |
| 184 | <goal>cmp</goal> |
| 185 | </goals> |
| 186 | </execution> |
| 187 | </executions> |
| 188 | </plugin> |
Thomas Wolf | 9b31969 | 2018-11-01 11:28:15 +0100 | [diff] [blame] | 189 | </plugins> |
| 190 | </build> |
Thomas Wolf | 488d955 | 2018-09-23 16:45:45 +0200 | [diff] [blame] | 191 | |
Thomas Wolf | 9b31969 | 2018-11-01 11:28:15 +0100 | [diff] [blame] | 192 | <reporting> |
Thomas Wolf | 488d955 | 2018-09-23 16:45:45 +0200 | [diff] [blame] | 193 | <plugins> |
| 194 | <plugin> |
| 195 | <groupId>com.github.siom79.japicmp</groupId> |
| 196 | <artifactId>japicmp-maven-plugin</artifactId> |
| 197 | <version>${japicmp-version}</version> |
| 198 | <reportSets> |
| 199 | <reportSet> |
| 200 | <reports> |
| 201 | <report>cmp-report</report> |
| 202 | </reports> |
| 203 | </reportSet> |
| 204 | </reportSets> |
| 205 | <configuration> |
| 206 | <oldVersion> |
| 207 | <dependency> |
| 208 | <groupId>${project.groupId}</groupId> |
| 209 | <artifactId>${project.artifactId}</artifactId> |
| 210 | <version>${jgit-last-release-version}</version> |
| 211 | </dependency> |
| 212 | </oldVersion> |
| 213 | <newVersion> |
| 214 | <file> |
| 215 | <path>${project.build.directory}/${project.artifactId}-${project.version}.jar</path> |
| 216 | </file> |
| 217 | </newVersion> |
| 218 | <parameter> |
| 219 | <onlyModified>true</onlyModified> |
| 220 | <includes> |
| 221 | <include>org.eclipse.jgit.*</include> |
| 222 | </includes> |
Thomas Wolf | 709087c | 2021-12-27 11:32:15 +0100 | [diff] [blame] | 223 | <excludes> |
| 224 | <exclude>*.internal.*</exclude> |
| 225 | </excludes> |
Thomas Wolf | 488d955 | 2018-09-23 16:45:45 +0200 | [diff] [blame] | 226 | <accessModifier>public</accessModifier> |
| 227 | <breakBuildOnModifications>false</breakBuildOnModifications> |
| 228 | <breakBuildOnBinaryIncompatibleModifications>false</breakBuildOnBinaryIncompatibleModifications> |
| 229 | <onlyBinaryIncompatible>false</onlyBinaryIncompatible> |
| 230 | <includeSynthetic>false</includeSynthetic> |
| 231 | <ignoreMissingClasses>false</ignoreMissingClasses> |
| 232 | <skipPomModules>true</skipPomModules> |
| 233 | </parameter> |
Thomas Wolf | e71e006 | 2018-12-15 20:27:34 +0100 | [diff] [blame] | 234 | <skip>false</skip> |
Thomas Wolf | 488d955 | 2018-09-23 16:45:45 +0200 | [diff] [blame] | 235 | </configuration> |
| 236 | </plugin> |
| 237 | </plugins> |
| 238 | </reporting> |
| 239 | </project> |