bridge
Used in:
components
- OverviewOverview
- VersionsVersions
- DependentsDependents
- DependenciesDependencies
<dependency> <groupId>org.sonarsource.javascript</groupId> <artifactId>bridge</artifactId> <version>10.22.0.32148</version> </dependency>
<?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/maven-v4_0_0.xsd"> <modelVersion>4.0.0</modelVersion> <parent> <groupId>org.sonarsource.javascript</groupId> <artifactId>sonar-plugin</artifactId> <version>10.22.0.32148</version> </parent> <artifactId>bridge</artifactId> <name>SonarQube JavaScript :: Bridge</name> <properties> <protobuf.version>4.30.2</protobuf.version> </properties> <dependencies> <dependency> <groupId>${project.groupId}</groupId> <artifactId>api</artifactId> </dependency> <dependency> <groupId>org.sonarsource.api.plugin</groupId> <artifactId>sonar-plugin-api</artifactId> </dependency> <dependency> <groupId>com.google.code.findbugs</groupId> <artifactId>jsr305</artifactId> </dependency> <dependency> <groupId>com.google.code.gson</groupId> <artifactId>gson</artifactId> </dependency> <dependency> <groupId>org.apache.commons</groupId> <artifactId>commons-compress</artifactId> </dependency> <dependency> <groupId>org.tukaani</groupId> <artifactId>xz</artifactId> </dependency> <dependency> <groupId>com.google.protobuf</groupId> <artifactId>protobuf-java</artifactId> <version>${protobuf.version}</version> </dependency> <dependency> <groupId>org.junit.jupiter</groupId> <artifactId>junit-jupiter</artifactId> <scope>test</scope> </dependency> <dependency> <groupId>org.assertj</groupId> <artifactId>assertj-core</artifactId> </dependency> <dependency> <groupId>org.mockito</groupId> <artifactId>mockito-core</artifactId> </dependency> <dependency> <groupId>org.awaitility</groupId> <artifactId>awaitility</artifactId> </dependency> <dependency> <groupId>org.sonarsource.api.plugin</groupId> <artifactId>sonar-plugin-api-test-fixtures</artifactId> </dependency> <dependency> <groupId>org.sonarsource.sonarqube</groupId> <artifactId>sonar-plugin-api-impl</artifactId> </dependency> <dependency> <groupId>ch.qos.logback</groupId> <artifactId>logback-classic</artifactId> <scope>test</scope> </dependency> </dependencies> <build> <extensions> <extension> <groupId>kr.motd.maven</groupId> <artifactId>os-maven-plugin</artifactId> <version>1.7.1</version> </extension> </extensions> <plugins> <plugin> <groupId>org.xolstice.maven.plugins</groupId> <artifactId>protobuf-maven-plugin</artifactId> <version>0.6.1</version> <executions> <execution> <id>Generate Protobuf Java Sources</id> <goals> <goal>compile</goal> </goals> <phase>generate-sources</phase> <configuration> <protocArtifact>com.google.protobuf:protoc:${protobuf.version}:exe:${os.detected.classifier} </protocArtifact> <protoSourceRoot>../../packages/jsts/src/parsers</protoSourceRoot> <outputDirectory>${project.build.directory}/generated-sources</outputDirectory> </configuration> </execution> </executions> <dependencies> <dependency> <groupId>com.google.protobuf</groupId> <artifactId>protoc</artifactId> <version>${protobuf.version}</version> <type>exe</type> <classifier>${os.detected.classifier}</classifier> </dependency> </dependencies> </plugin> <plugin> <groupId>org.codehaus.mojo</groupId> <artifactId>exec-maven-plugin</artifactId> <version>3.5.0</version> <executions> <execution> <id>Clean the npm dependencies</id> <phase>clean</phase> <goals> <goal>exec</goal> </goals> <configuration> <executable>rm</executable> <workingDirectory>../..</workingDirectory> <arguments> <argument>-rf</argument> <argument>lib</argument> <argument>bin</argument> </arguments> </configuration> </execution> <execution> <id>Build the bridge</id> <phase>generate-resources</phase> <goals> <goal>exec</goal> </goals> <configuration> <executable>npm</executable> <workingDirectory>../..</workingDirectory> <arguments> <argument>run</argument> <argument>bridge:build:fast</argument> </arguments> </configuration> </execution> <execution> <id>Bundle the bridge</id> <phase>generate-resources</phase> <goals> <goal>exec</goal> </goals> <configuration> <executable>npm</executable> <workingDirectory>../..</workingDirectory> <arguments> <argument>run</argument> <argument>bridge:bundle</argument> </arguments> </configuration> </execution> <execution> <id>Pack the bridge</id> <phase>generate-resources</phase> <goals> <goal>exec</goal> </goals> <configuration> <executable>npm</executable> <workingDirectory>../..</workingDirectory> <arguments> <argument>pack</argument> </arguments> </configuration> </execution> </executions> </plugin> <plugin> <artifactId>maven-resources-plugin</artifactId> <version>3.3.1</version> <executions> <execution> <id>Copy the bridge to the package</id> <phase>process-resources</phase> <goals> <goal>copy-resources</goal> </goals> <configuration> <resources> <resource> <directory>../..</directory> <includes> <include>sonarjs-1.0.0.tgz</include> </includes> </resource> </resources> <outputDirectory>${basedir}/target/classes</outputDirectory> </configuration> </execution> </executions> </plugin> </plugins> </build> </project>