|
| 1 | +<?xml version="1.0" encoding="UTF-8"?> |
| 2 | +<!-- |
| 3 | +The MIT License (MIT) |
| 4 | +
|
| 5 | +Copyright (c) 2020-2021 Polystat.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" 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"> |
| 26 | + <modelVersion>4.0.0</modelVersion> |
| 27 | + <parent> |
| 28 | + <groupId>com.jcabi</groupId> |
| 29 | + <artifactId>parent</artifactId> |
| 30 | + <version>0.56.0</version> |
| 31 | + </parent> |
| 32 | + <groupId>org.polystat</groupId> |
| 33 | + <artifactId>far</artifactId> |
| 34 | + <version>1.0-SNAPSHOT</version> |
| 35 | + <packaging>jar</packaging> |
| 36 | + <name>far</name> |
| 37 | + <description>Find-a-Reverse Analyzer</description> |
| 38 | + <dependencies> |
| 39 | + <dependency> |
| 40 | + <groupId>org.slf4j</groupId> |
| 41 | + <artifactId>slf4j-log4j12</artifactId> |
| 42 | + <scope>runtime</scope> |
| 43 | + </dependency> |
| 44 | + <dependency> |
| 45 | + <groupId>log4j</groupId> |
| 46 | + <artifactId>log4j</artifactId> |
| 47 | + <scope>runtime</scope> |
| 48 | + </dependency> |
| 49 | + <dependency> |
| 50 | + <groupId>org.eolang</groupId> |
| 51 | + <artifactId>eo-parser</artifactId> |
| 52 | + <version>0.21.0</version> |
| 53 | + </dependency> |
| 54 | + <dependency> |
| 55 | + <groupId>org.cactoos</groupId> |
| 56 | + <artifactId>cactoos</artifactId> |
| 57 | + <version>0.46</version> |
| 58 | + </dependency> |
| 59 | + <dependency> |
| 60 | + <groupId>com.jcabi.incubator</groupId> |
| 61 | + <artifactId>xembly</artifactId> |
| 62 | + <version>0.25.0</version> |
| 63 | + </dependency> |
| 64 | + <dependency> |
| 65 | + <groupId>com.jcabi</groupId> |
| 66 | + <artifactId>jcabi-log</artifactId> |
| 67 | + </dependency> |
| 68 | + <dependency> |
| 69 | + <groupId>com.jcabi</groupId> |
| 70 | + <artifactId>jcabi-matchers</artifactId> |
| 71 | + </dependency> |
| 72 | + <dependency> |
| 73 | + <groupId>com.jcabi</groupId> |
| 74 | + <artifactId>jcabi-xml</artifactId> |
| 75 | + <version>0.23.0</version> |
| 76 | + </dependency> |
| 77 | + <dependency> |
| 78 | + <groupId>org.junit.jupiter</groupId> |
| 79 | + <artifactId>junit-jupiter-params</artifactId> |
| 80 | + <version>5.6.2</version> |
| 81 | + <scope>test</scope> |
| 82 | + </dependency> |
| 83 | + <dependency> |
| 84 | + <groupId>com.google.code.findbugs</groupId> |
| 85 | + <artifactId>annotations</artifactId> |
| 86 | + <version>3.0.1</version> |
| 87 | + <scope>provided</scope> |
| 88 | + </dependency> |
| 89 | + </dependencies> |
| 90 | + <build> |
| 91 | + <plugins> |
| 92 | + <plugin> |
| 93 | + <groupId>org.eolang</groupId> |
| 94 | + <artifactId>eo-maven-plugin</artifactId> |
| 95 | + <version>0.21.0</version> |
| 96 | + <executions> |
| 97 | + <execution> |
| 98 | + <id>test-compile</id> |
| 99 | + <phase>generate-test-resources</phase> |
| 100 | + <goals> |
| 101 | + <goal>register</goal> |
| 102 | + <goal>parse</goal> |
| 103 | + <goal>optimize</goal> |
| 104 | + </goals> |
| 105 | + <configuration> |
| 106 | + <scope>test</scope> |
| 107 | + <sourcesDir>${project.basedir}/src/test/eo</sourcesDir> |
| 108 | + <targetDir>${project.basedir}/target/test-classes/xmir</targetDir> |
| 109 | + </configuration> |
| 110 | + </execution> |
| 111 | + </executions> |
| 112 | + </plugin> |
| 113 | + </plugins> |
| 114 | + </build> |
| 115 | + <profiles> |
| 116 | + <profile> |
| 117 | + <id>sonatype</id> |
| 118 | + <build> |
| 119 | + <plugins> |
| 120 | + <plugin> |
| 121 | + <!-- @see https://issues.sonatype.org/browse/OSSRH-70730 --> |
| 122 | + <groupId>org.sonatype.plugins</groupId> |
| 123 | + <artifactId>nexus-staging-maven-plugin</artifactId> |
| 124 | + <configuration> |
| 125 | + <nexusUrl>https://s01.oss.sonatype.org/</nexusUrl> |
| 126 | + </configuration> |
| 127 | + </plugin> |
| 128 | + </plugins> |
| 129 | + </build> |
| 130 | + </profile> |
| 131 | + <profile> |
| 132 | + <id>qulice</id> |
| 133 | + <build> |
| 134 | + <plugins> |
| 135 | + <plugin> |
| 136 | + <groupId>com.qulice</groupId> |
| 137 | + <artifactId>qulice-maven-plugin</artifactId> |
| 138 | + <configuration> |
| 139 | + <excludes combine.children="append"> |
| 140 | + <exclude>duplicatefinder:.*</exclude> |
| 141 | + </excludes> |
| 142 | + </configuration> |
| 143 | + </plugin> |
| 144 | + </plugins> |
| 145 | + </build> |
| 146 | + </profile> |
| 147 | + <profile> |
| 148 | + <id>jacoco</id> |
| 149 | + <build> |
| 150 | + <plugins> |
| 151 | + <plugin> |
| 152 | + <groupId>org.jacoco</groupId> |
| 153 | + <artifactId>jacoco-maven-plugin</artifactId> |
| 154 | + <version>0.8.5</version> |
| 155 | + <configuration> |
| 156 | + <output>file</output> |
| 157 | + </configuration> |
| 158 | + <executions> |
| 159 | + <execution> |
| 160 | + <id>jacoco-initialize</id> |
| 161 | + <goals> |
| 162 | + <goal>prepare-agent</goal> |
| 163 | + </goals> |
| 164 | + </execution> |
| 165 | + <execution> |
| 166 | + <id>jacoco-initialize-integration</id> |
| 167 | + <goals> |
| 168 | + <goal>prepare-agent-integration</goal> |
| 169 | + </goals> |
| 170 | + </execution> |
| 171 | + <execution> |
| 172 | + <id>jacoco-report</id> |
| 173 | + <goals> |
| 174 | + <goal>report</goal> |
| 175 | + </goals> |
| 176 | + </execution> |
| 177 | + <execution> |
| 178 | + <id>jacoco-report-integration</id> |
| 179 | + <goals> |
| 180 | + <goal>report-integration</goal> |
| 181 | + </goals> |
| 182 | + </execution> |
| 183 | + </executions> |
| 184 | + </plugin> |
| 185 | + </plugins> |
| 186 | + </build> |
| 187 | + </profile> |
| 188 | + </profiles> |
| 189 | +</project> |
0 commit comments