| <?xml version="1.0" encoding="UTF-8"?> |
| <project xmlns="http://maven.apache.org/POM/4.0.0" |
| xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" |
| xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd"> |
| <modelVersion>4.0.0</modelVersion> |
| |
| <groupId>org.jetbrains.intellij.deps.jcef</groupId> |
| <artifactId>jcef</artifactId> |
| <version>111.2.1-g870da30-chromium-111.0.5563.64_full-api-1.12</version> |
| |
| <build> |
| <plugins> |
| <plugin> |
| <artifactId>maven-clean-plugin</artifactId> |
| <version>2.4.1</version> |
| <configuration> |
| <filesets> |
| <fileset> |
| <directory>${basedir}/out</directory> |
| <includes> |
| <include>**/*</include> |
| </includes> |
| </fileset> |
| </filesets> |
| </configuration> |
| </plugin> |
| <plugin> |
| <artifactId>maven-antrun-plugin</artifactId> |
| <version>1.8</version> |
| <executions> |
| <execution> |
| <id>compile</id> |
| <phase>compile</phase> |
| <goals> |
| <goal>run</goal> |
| </goals> |
| <configuration> |
| <target> |
| <ant antfile="${basedir}/build.xml"> |
| <target name="compile"/> |
| <property name="env.OUT_PATH" value="${basedir}/out" /> |
| </ant> |
| </target> |
| </configuration> |
| </execution> |
| <execution> |
| <id>package</id> |
| <phase>package</phase> |
| <goals> |
| <goal>run</goal> |
| </goals> |
| <configuration> |
| <target> |
| <ant antfile="${basedir}/build.xml"> |
| <target name="jar"/> |
| <property name="env.OUT_PATH" value="${basedir}/out" /> |
| </ant> |
| </target> |
| </configuration> |
| </execution> |
| </executions> |
| </plugin> |
| <plugin> |
| <groupId>org.apache.maven.plugins</groupId> |
| <artifactId>maven-deploy-plugin</artifactId> |
| <version>2.8.2</version> |
| <goals><goal>deploy-file</goal></goals> |
| <configuration> |
| <repositoryId>space-intellij-dependencies</repositoryId> |
| <packaging>jar</packaging> |
| <generatePom>true</generatePom> |
| <url>${project.distributionManagement.repository.url}</url> |
| <artifactId>${project.artifactId}</artifactId> |
| <groupId>${project.groupId}</groupId> |
| <version>${project.version}</version> |
| <file>out/jcef.jar</file> |
| <sources>out/jcef-sources.jar</sources> |
| </configuration> |
| </plugin> |
| </plugins> |
| </build> |
| |
| <distributionManagement> |
| <repository> |
| <id>space-intellij-dependencies</id> |
| <url>https://packages.jetbrains.team/maven/p/ij/intellij-dependencies</url> |
| </repository> |
| </distributionManagement> |
| </project> |