|
| 1 | +<?xml version="1.0"?> |
| 2 | +<!-- |
| 3 | + * The MIT License (MIT) |
| 4 | + * |
| 5 | + * Copyright (c) 2016 eolang.org |
| 6 | + * |
| 7 | + * Permission is hereby granted, free of charge, to any person obtaining a copy |
| 8 | + * of this software and associated documentation files (the "Software"), to deal |
| 9 | + * in the Software without restriction, including without limitation the rights |
| 10 | + * to use, copy, modify, merge, publish, distribute, sublicense, and/or sell |
| 11 | + * copies of the Software, and to permit persons to whom the Software is |
| 12 | + * furnished to do so, subject to the following conditions: |
| 13 | + * |
| 14 | + * The above copyright notice and this permission notice shall be included |
| 15 | + * in all copies or substantial portions of the Software. |
| 16 | + * |
| 17 | + * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR |
| 18 | + * IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, |
| 19 | + * FITNESS FOR A PARTICULAR PURPOSE AND NON-INFRINGEMENT. IN NO EVENT SHALL THE |
| 20 | + * AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER |
| 21 | + * LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, |
| 22 | + * OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE |
| 23 | + * SOFTWARE. |
| 24 | + --> |
| 25 | +<project xmlns="http://maven.apache.org/POM/4.0.0" |
| 26 | + xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" |
| 27 | + xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd"> |
| 28 | + <modelVersion>4.0.0</modelVersion> |
| 29 | + <parent> |
| 30 | + <groupId>com.jcabi</groupId> |
| 31 | + <artifactId>parent</artifactId> |
| 32 | + <version>0.48</version> |
| 33 | + </parent> |
| 34 | + <groupId>org.eolang</groupId> |
| 35 | + <artifactId>compiler</artifactId> |
| 36 | + <version>1.0-SNAPSHOT</version> |
| 37 | + <packaging>jar</packaging> |
| 38 | + <name>compiler</name> |
| 39 | + <description>EO-to-Java Compiler</description> |
| 40 | + <url>https://github.com/yegor256/eo</url> |
| 41 | + <inceptionYear>2016</inceptionYear> |
| 42 | + <organization> |
| 43 | + <name>EO</name> |
| 44 | + <url>https://github.com/yegor256/eo</url> |
| 45 | + </organization> |
| 46 | + <licenses> |
| 47 | + <license> |
| 48 | + <name>MIT</name> |
| 49 | + <url>https://www.eolang.org/LICENSE.txt</url> |
| 50 | + <distribution>site</distribution> |
| 51 | + </license> |
| 52 | + </licenses> |
| 53 | + <developers> |
| 54 | + <developer> |
| 55 | + <id>1</id> |
| 56 | + <name>Yegor Bugayenko</name> |
| 57 | + |
| 58 | + <organization>yegor256.com</organization> |
| 59 | + <organizationUrl>http://www.yegor256.com</organizationUrl> |
| 60 | + <roles> |
| 61 | + <role>Architect</role> |
| 62 | + <role>Developer</role> |
| 63 | + </roles> |
| 64 | + <timezone>-7</timezone> |
| 65 | + </developer> |
| 66 | + </developers> |
| 67 | + <issueManagement> |
| 68 | + <system>GitHub</system> |
| 69 | + <url>https://github.com/yegor256/eo/issues</url> |
| 70 | + </issueManagement> |
| 71 | + <scm> |
| 72 | + < connection>scm:git: [email protected]:yegor256/eo.git</ connection> |
| 73 | + < developerConnection>scm:git: [email protected]:yegor256/eo.git</ developerConnection> |
| 74 | + <url>https://github.com/yegor256/eo</url> |
| 75 | + </scm> |
| 76 | + <ciManagement> |
| 77 | + <system>rultor</system> |
| 78 | + <url>http://www.rultor.com/s/eo</url> |
| 79 | + </ciManagement> |
| 80 | + <distributionManagement> |
| 81 | + <site> |
| 82 | + <id>github-pages</id> |
| 83 | + <url>https://github.com/yegor256/eo</url> |
| 84 | + </site> |
| 85 | + </distributionManagement> |
| 86 | + <properties> |
| 87 | + <timestamp>${maven.build.timestamp}</timestamp> |
| 88 | + <jdk.version>1.7</jdk.version> |
| 89 | + </properties> |
| 90 | + <dependencies> |
| 91 | + <dependency> |
| 92 | + <groupId>org.projectlombok</groupId> |
| 93 | + <artifactId>lombok</artifactId> |
| 94 | + </dependency> |
| 95 | + <dependency> |
| 96 | + <groupId>commons-io</groupId> |
| 97 | + <artifactId>commons-io</artifactId> |
| 98 | + <scope>test</scope> |
| 99 | + </dependency> |
| 100 | + <dependency> |
| 101 | + <groupId>com.google.guava</groupId> |
| 102 | + <artifactId>guava</artifactId> |
| 103 | + <scope>test</scope> |
| 104 | + </dependency> |
| 105 | + <dependency> |
| 106 | + <groupId>com.jcabi</groupId> |
| 107 | + <artifactId>jcabi-matchers</artifactId> |
| 108 | + <scope>test</scope> |
| 109 | + </dependency> |
| 110 | + <dependency> |
| 111 | + <groupId>com.jcabi</groupId> |
| 112 | + <artifactId>jcabi-log</artifactId> |
| 113 | + <scope>test</scope> |
| 114 | + </dependency> |
| 115 | + </dependencies> |
| 116 | + <build> |
| 117 | + <plugins> |
| 118 | + <plugin> |
| 119 | + <artifactId>maven-compiler-plugin</artifactId> |
| 120 | + <configuration> |
| 121 | + <source>1.8</source> |
| 122 | + <target>1.8</target> |
| 123 | + </configuration> |
| 124 | + </plugin> |
| 125 | + </plugins> |
| 126 | + </build> |
| 127 | + <profiles> |
| 128 | + <profile> |
| 129 | + <id>qulice</id> |
| 130 | + <build> |
| 131 | + <plugins> |
| 132 | + <plugin> |
| 133 | + <groupId>com.qulice</groupId> |
| 134 | + <artifactId>qulice-maven-plugin</artifactId> |
| 135 | + <configuration> |
| 136 | + <excludes combine.children="append"> |
| 137 | + <exclude>checkstyle:/src/site/resources/.*</exclude> |
| 138 | + </excludes> |
| 139 | + </configuration> |
| 140 | + </plugin> |
| 141 | + </plugins> |
| 142 | + </build> |
| 143 | + </profile> |
| 144 | + <profile> |
| 145 | + <id>coveralls</id> |
| 146 | + <build> |
| 147 | + <plugins> |
| 148 | + <plugin> |
| 149 | + <groupId>org.eluder.coveralls</groupId> |
| 150 | + <artifactId>coveralls-maven-plugin</artifactId> |
| 151 | + <executions> |
| 152 | + <execution> |
| 153 | + <phase>site</phase> |
| 154 | + <goals> |
| 155 | + <goal>report</goal> |
| 156 | + </goals> |
| 157 | + <configuration> |
| 158 | + <repoToken>${coveralls.token}</repoToken> |
| 159 | + </configuration> |
| 160 | + </execution> |
| 161 | + </executions> |
| 162 | + </plugin> |
| 163 | + </plugins> |
| 164 | + </build> |
| 165 | + </profile> |
| 166 | + </profiles> |
| 167 | +</project> |
0 commit comments