2021-03-12 19:40:50 +02:00
|
|
|
<?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>
|
2022-04-16 21:54:14 +02:00
|
|
|
<version>0.3.0-SNAPSHOT</version>
|
2021-03-12 19:40:50 +02:00
|
|
|
</parent>
|
|
|
|
|
|
|
|
<groupId>com.e1c.v8codestyle</groupId>
|
|
|
|
<artifactId>bundles</artifactId>
|
|
|
|
<packaging>pom</packaging>
|
|
|
|
<name>Bundles</name>
|
|
|
|
|
|
|
|
<modules>
|
|
|
|
<module>com.e1c.v8codestyle</module>
|
2022-01-11 23:21:59 +02:00
|
|
|
<module>com.e1c.v8codestyle.ui</module>
|
2021-03-12 19:40:50 +02:00
|
|
|
<module>com.e1c.v8codestyle.md</module>
|
2021-08-31 08:41:54 +02:00
|
|
|
<module>com.e1c.v8codestyle.md.ui</module>
|
2021-08-18 10:07:16 +02:00
|
|
|
<module>com.e1c.v8codestyle.form</module>
|
2021-06-21 21:06:07 +02:00
|
|
|
<module>com.e1c.v8codestyle.bsl</module>
|
2021-10-01 12:44:44 +02:00
|
|
|
<module>com.e1c.v8codestyle.bsl.ui</module>
|
2021-06-19 11:55:51 +02:00
|
|
|
<module>com.e1c.v8codestyle.autosort</module>
|
|
|
|
<module>com.e1c.v8codestyle.autosort.ui</module>
|
2021-06-21 20:48:02 +02:00
|
|
|
<module>com.e1c.v8codestyle.ql</module>
|
2021-08-12 13:11:27 +02:00
|
|
|
<module>com.e1c.v8codestyle.right</module>
|
2021-03-12 19:40:50 +02:00
|
|
|
</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>
|
2021-07-12 14:54:32 +02:00
|
|
|
<plugin>
|
|
|
|
<groupId>org.codehaus.mojo</groupId>
|
|
|
|
<artifactId>native2ascii-maven-plugin</artifactId>
|
|
|
|
</plugin>
|
2021-03-12 19:40:50 +02:00
|
|
|
</plugins>
|
|
|
|
</build>
|
|
|
|
</project>
|