|
| 1 | +<project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" |
| 2 | + xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 |
| 3 | + http://maven.apache.org/xsd/maven-4.0.0.xsd"> |
| 4 | + <modelVersion>4.0.0</modelVersion> |
| 5 | + |
| 6 | + <parent> |
| 7 | + <groupId>org.neo4j.driver</groupId> |
| 8 | + <artifactId>neo4j-java-driver-parent</artifactId> |
| 9 | + <version>6.0-SNAPSHOT</version> |
| 10 | + </parent> |
| 11 | + |
| 12 | + <artifactId>neo4j-java-driver-bom</artifactId> |
| 13 | + |
| 14 | + <packaging>pom</packaging> |
| 15 | + <name>Neo4j Java Driver (BOM)</name> |
| 16 | + <description>The BOM for the Neo4j Java Driver</description> |
| 17 | + <url>https://github.com/neo4j/neo4j-java-driver</url> |
| 18 | + |
| 19 | + <properties> |
| 20 | + <maven.deploy.skip>false</maven.deploy.skip> |
| 21 | + </properties> |
| 22 | + |
| 23 | + <dependencyManagement> |
| 24 | + <dependencies> |
| 25 | + <dependency> |
| 26 | + <groupId>org.neo4j.driver</groupId> |
| 27 | + <artifactId>neo4j-java-driver</artifactId> |
| 28 | + <version>${project.version}</version> |
| 29 | + </dependency> |
| 30 | + <dependency> |
| 31 | + <groupId>org.neo4j.driver</groupId> |
| 32 | + <artifactId>neo4j-java-driver-all</artifactId> |
| 33 | + <version>${project.version}</version> |
| 34 | + </dependency> |
| 35 | + <dependency> |
| 36 | + <groupId>org.neo4j.bolt</groupId> |
| 37 | + <artifactId>neo4j-bolt-connection-bom</artifactId> |
| 38 | + <version>${neo4j-bolt-connection-bom.version}</version> |
| 39 | + <type>pom</type> |
| 40 | + <scope>import</scope> |
| 41 | + </dependency> |
| 42 | + </dependencies> |
| 43 | + </dependencyManagement> |
| 44 | + |
| 45 | + <build> |
| 46 | + <plugins> |
| 47 | + <plugin> |
| 48 | + <groupId>org.codehaus.mojo</groupId> |
| 49 | + <artifactId>flatten-maven-plugin</artifactId> |
| 50 | + <executions> |
| 51 | + <execution> |
| 52 | + <id>flatten</id> |
| 53 | + <goals> |
| 54 | + <goal>flatten</goal> |
| 55 | + </goals> |
| 56 | + <phase>process-resources</phase> |
| 57 | + <configuration> |
| 58 | + <updatePomFile>true</updatePomFile> |
| 59 | + <flattenMode>bom</flattenMode> |
| 60 | + <pomElements> |
| 61 | + <properties>remove</properties> |
| 62 | + <dependencyManagement>extended_interpolate</dependencyManagement> |
| 63 | + </pomElements> |
| 64 | + </configuration> |
| 65 | + </execution> |
| 66 | + <execution> |
| 67 | + <id>flatten-clean</id> |
| 68 | + <goals> |
| 69 | + <goal>clean</goal> |
| 70 | + </goals> |
| 71 | + <phase>clean</phase> |
| 72 | + </execution> |
| 73 | + </executions> |
| 74 | + </plugin> |
| 75 | + </plugins> |
| 76 | + </build> |
| 77 | + |
| 78 | + <scm> |
| 79 | + <connection>scm:git:git://github.com/neo4j/neo4j-java-driver.git</connection> |
| 80 | + < developerConnection>scm:git: [email protected]:neo4j/neo4j-java-driver.git</ developerConnection> |
| 81 | + <url>https://github.com/neo4j/neo4j-java-driver</url> |
| 82 | + </scm> |
| 83 | + |
| 84 | +</project> |
0 commit comments