mirror of
https://github.com/1C-Company/v8-code-style.git
synced 2024-12-12 13:25:29 +02:00
65 lines
2.1 KiB
XML
65 lines
2.1 KiB
XML
<?xml version="1.0" encoding="UTF-8"?>
|
|
<!--
|
|
Copyright (c) 2020 1C-Soft LLC
|
|
This program and the accompanying materials are made available under
|
|
the terms of the Eclipse Public License 2.0 which is available at
|
|
https://www.eclipse.org/legal/epl-2.0/
|
|
SPDX-License-Identifier: EPL-2.0
|
|
Contributors:
|
|
1C-Soft LLC - initial API and implementation
|
|
-->
|
|
<project xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd" xmlns="http://maven.apache.org/POM/4.0.0"
|
|
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance">
|
|
<modelVersion>4.0.0</modelVersion>
|
|
<parent>
|
|
<groupId>com.e1c.v8codestyle</groupId>
|
|
<artifactId>parent</artifactId>
|
|
<version>0.3.0-SNAPSHOT</version>
|
|
</parent>
|
|
|
|
<groupId>com.e1c.v8codestyle</groupId>
|
|
<artifactId>bundles</artifactId>
|
|
<packaging>pom</packaging>
|
|
<name>Bundles</name>
|
|
|
|
<modules>
|
|
<module>com.e1c.v8codestyle</module>
|
|
<module>com.e1c.v8codestyle.ui</module>
|
|
<module>com.e1c.v8codestyle.md</module>
|
|
<module>com.e1c.v8codestyle.md.ui</module>
|
|
<module>com.e1c.v8codestyle.form</module>
|
|
<module>com.e1c.v8codestyle.bsl</module>
|
|
<module>com.e1c.v8codestyle.bsl.ui</module>
|
|
<module>com.e1c.v8codestyle.autosort</module>
|
|
<module>com.e1c.v8codestyle.autosort.ui</module>
|
|
<module>com.e1c.v8codestyle.ql</module>
|
|
<module>com.e1c.v8codestyle.right</module>
|
|
</modules>
|
|
|
|
<build>
|
|
<plugins>
|
|
<plugin>
|
|
<groupId>org.eclipse.tycho</groupId>
|
|
<artifactId>tycho-source-plugin</artifactId>
|
|
</plugin>
|
|
<plugin>
|
|
<groupId>org.apache.maven.plugins</groupId>
|
|
<artifactId>maven-checkstyle-plugin</artifactId>
|
|
<executions>
|
|
<execution>
|
|
<id>run-checkstyle</id>
|
|
<phase>validate</phase>
|
|
<goals>
|
|
<goal>check</goal>
|
|
</goals>
|
|
</execution>
|
|
</executions>
|
|
</plugin>
|
|
<plugin>
|
|
<groupId>org.codehaus.mojo</groupId>
|
|
<artifactId>native2ascii-maven-plugin</artifactId>
|
|
</plugin>
|
|
</plugins>
|
|
</build>
|
|
</project>
|