-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
More readable.
- Loading branch information
Showing
1 changed file
with
191 additions
and
191 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,194 +1,194 @@ | ||
<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 https://maven.apache.org/xsd/maven-4.0.0.xsd"> | ||
<modelVersion>4.0.0</modelVersion> | ||
<groupId>edu.cuny.hunter.hybridize</groupId> | ||
<artifactId>edu.cuny.hunter.hybridize</artifactId> | ||
<version>1.0.0-SNAPSHOT</version> | ||
<packaging>pom</packaging> | ||
<name>Hybridize Function Refactoring</name> | ||
<description>This prototype refactoring plug-in for Eclipse PyDev represents ongoing work in developing an automated refactoring tool that would assist developers in hybridizing their Python functions.</description> | ||
<ciManagement> | ||
<system>Travis CI</system> | ||
<url>https://app.travis-ci.com/github/ponder-lab/Hybridize-Functions-Refactoring</url> | ||
</ciManagement> | ||
<url>https://github.com/ponder-lab/Hybridize-Functions-Refactoring</url> | ||
<prerequisites> | ||
<maven>3.6.3</maven> | ||
</prerequisites> | ||
<modules> | ||
<module>edu.cuny.hunter.hybridize.core</module> | ||
<module>edu.cuny.hunter.hybridize.ui</module> | ||
<module>edu.cuny.hunter.hybridize.tests</module> | ||
<module>edu.cuny.hunter.hybridize.tests.report</module> | ||
</modules> | ||
<organization> | ||
<name>CUNY PONDER</name> | ||
<url>http://ponder-lab.github.io</url> | ||
</organization> | ||
<scm> | ||
<url>https://github.com/ponder-lab/Hybridize-Functions-Refactoring</url> | ||
</scm> | ||
<issueManagement> | ||
<system>GitHub</system> | ||
<url>https://github.com/ponder-lab/Hybridize-Functions-Refactoring/issues</url> | ||
</issueManagement> | ||
<properties> | ||
<tycho-version>2.7.4</tycho-version> | ||
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding> | ||
<jacoco-version>0.8.8</jacoco-version> | ||
<junit-version>4.13.2</junit-version> | ||
<eclipse-site>http://download.eclipse.org/releases/${platform-version-name}</eclipse-site> | ||
<platform-version-name>2022-06</platform-version-name> | ||
<platform-version>4.24</platform-version> | ||
<maven.compiler.source>11</maven.compiler.source> | ||
<maven.compiler.target>11</maven.compiler.target> | ||
</properties> | ||
<!-- run mvn versions:display-plugin-updates --> | ||
<reporting> | ||
<plugins> | ||
<plugin> | ||
<groupId>org.codehaus.mojo</groupId> | ||
<artifactId>versions-maven-plugin</artifactId> | ||
<version>2.11.0</version> | ||
<reportSets> | ||
<reportSet> | ||
<reports> | ||
<report>dependency-updates-report</report> | ||
<report>plugin-updates-report</report> | ||
<report>property-updates-report</report> | ||
</reports> | ||
</reportSet> | ||
</reportSets> | ||
</plugin> | ||
</plugins> | ||
</reporting> | ||
<profiles> | ||
<profile> | ||
<id>jacoco</id> | ||
<activation> | ||
<activeByDefault>false</activeByDefault> | ||
</activation> | ||
<build> | ||
<plugins> | ||
<plugin> | ||
<groupId>org.jacoco</groupId> | ||
<artifactId>jacoco-maven-plugin</artifactId> | ||
<version>${jacoco-version}</version> | ||
<executions> | ||
<execution> | ||
<goals> | ||
<goal>prepare-agent</goal> | ||
</goals> | ||
</execution> | ||
</executions> | ||
</plugin> | ||
</plugins> | ||
<pluginManagement> | ||
<plugins> | ||
<plugin> | ||
<groupId>org.eluder.coveralls</groupId> | ||
<artifactId>coveralls-maven-plugin</artifactId> | ||
<version>4.3.0</version> | ||
<configuration> | ||
<jacocoReports> | ||
<jacocoReport>${project.basedir}/edu.cuny.hunter.hybridize.tests.report/target/site/jacoco-aggregate/jacoco.xml</jacocoReport> | ||
</jacocoReports> | ||
<repoToken>71wVjTUWdxts3DnxmkannlSruAfGsxN6d</repoToken> | ||
<serviceName>travis-pro</serviceName> | ||
</configuration> | ||
</plugin> | ||
</plugins> | ||
</pluginManagement> | ||
</build> | ||
</profile> | ||
</profiles> | ||
<repositories> | ||
<repository> | ||
<id>Eclipse current release</id> | ||
<layout>p2</layout> | ||
<url>http://download.eclipse.org/releases/${platform-version-name}</url> | ||
</repository> | ||
<repository> | ||
<id>Eclipse current updates</id> | ||
<layout>p2</layout> | ||
<url>http://download.eclipse.org/eclipse/updates/${platform-version}</url> | ||
</repository> | ||
<repository> | ||
<id>common-refactoring</id> | ||
<layout>p2</layout> | ||
<url>https://raw.githubusercontent.com/ponder-lab/Common-Eclipse-Refactoring-Framework/master/edu.cuny.citytech.refactoring.common.updatesite</url> | ||
</repository> | ||
<repository> | ||
<id>PyDev</id> | ||
<layout>p2</layout> | ||
<url>http://www.pydev.org/updates</url> | ||
</repository> | ||
</repositories> | ||
<build> | ||
<plugins> | ||
<plugin> | ||
<groupId>org.eclipse.tycho</groupId> | ||
<artifactId>tycho-maven-plugin</artifactId> | ||
<version>${tycho-version}</version> | ||
<extensions>true</extensions> | ||
</plugin> | ||
<plugin> | ||
<groupId>org.eclipse.tycho</groupId> | ||
<artifactId>tycho-compiler-plugin</artifactId> | ||
<version>${tycho-version}</version> | ||
<configuration> | ||
<source>11</source> | ||
<target>11</target> | ||
</configuration> | ||
</plugin> | ||
<plugin> | ||
<groupId>org.eclipse.tycho</groupId> | ||
<artifactId>tycho-p2-repository-plugin</artifactId> | ||
<version>${tycho-version}</version> | ||
<configuration> | ||
<includeAllDependencies>true</includeAllDependencies> | ||
</configuration> | ||
</plugin> | ||
<plugin> | ||
<groupId>org.eclipse.tycho</groupId> | ||
<artifactId>target-platform-configuration</artifactId> | ||
<version>${tycho-version}</version> | ||
<configuration> | ||
<pomDependencies>consider</pomDependencies> | ||
<environments> | ||
<environment> | ||
<os>linux</os> | ||
<ws>gtk</ws> | ||
<arch>x86_64</arch> | ||
</environment> | ||
<environment> | ||
<os>linux</os> | ||
<ws>gtk</ws> | ||
<arch>x86</arch> | ||
</environment> | ||
<environment> | ||
<os>macosx</os> | ||
<ws>cocoa</ws> | ||
<arch>x86</arch> | ||
</environment> | ||
<environment> | ||
<os>macosx</os> | ||
<ws>cocoa</ws> | ||
<arch>x86_64</arch> | ||
</environment> | ||
<environment> | ||
<os>win32</os> | ||
<ws>win32</ws> | ||
<arch>x86</arch> | ||
</environment> | ||
<environment> | ||
<os>win32</os> | ||
<ws>win32</ws> | ||
<arch>x86_64</arch> | ||
</environment> | ||
</environments> | ||
</configuration> | ||
</plugin> | ||
</plugins> | ||
</build> | ||
<modelVersion>4.0.0</modelVersion> | ||
<groupId>edu.cuny.hunter.hybridize</groupId> | ||
<artifactId>edu.cuny.hunter.hybridize</artifactId> | ||
<version>1.0.0-SNAPSHOT</version> | ||
<packaging>pom</packaging> | ||
<name>Hybridize Function Refactoring</name> | ||
<description>This prototype refactoring plug-in for Eclipse PyDev represents ongoing work in developing an automated refactoring tool that would assist developers in hybridizing their Python functions.</description> | ||
<ciManagement> | ||
<system>Travis CI</system> | ||
<url>https://app.travis-ci.com/github/ponder-lab/Hybridize-Functions-Refactoring</url> | ||
</ciManagement> | ||
<url>https://github.com/ponder-lab/Hybridize-Functions-Refactoring</url> | ||
<prerequisites> | ||
<maven>3.6.3</maven> | ||
</prerequisites> | ||
<modules> | ||
<module>edu.cuny.hunter.hybridize.core</module> | ||
<module>edu.cuny.hunter.hybridize.ui</module> | ||
<module>edu.cuny.hunter.hybridize.tests</module> | ||
<module>edu.cuny.hunter.hybridize.tests.report</module> | ||
</modules> | ||
<organization> | ||
<name>CUNY PONDER</name> | ||
<url>http://ponder-lab.github.io</url> | ||
</organization> | ||
<scm> | ||
<url>https://github.com/ponder-lab/Hybridize-Functions-Refactoring</url> | ||
</scm> | ||
<issueManagement> | ||
<system>GitHub</system> | ||
<url>https://github.com/ponder-lab/Hybridize-Functions-Refactoring/issues</url> | ||
</issueManagement> | ||
<properties> | ||
<tycho-version>2.7.4</tycho-version> | ||
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding> | ||
<jacoco-version>0.8.8</jacoco-version> | ||
<junit-version>4.13.2</junit-version> | ||
<eclipse-site>http://download.eclipse.org/releases/${platform-version-name}</eclipse-site> | ||
<platform-version-name>2022-06</platform-version-name> | ||
<platform-version>4.24</platform-version> | ||
<maven.compiler.source>11</maven.compiler.source> | ||
<maven.compiler.target>11</maven.compiler.target> | ||
</properties> | ||
<!-- run mvn versions:display-plugin-updates --> | ||
<reporting> | ||
<plugins> | ||
<plugin> | ||
<groupId>org.codehaus.mojo</groupId> | ||
<artifactId>versions-maven-plugin</artifactId> | ||
<version>2.11.0</version> | ||
<reportSets> | ||
<reportSet> | ||
<reports> | ||
<report>dependency-updates-report</report> | ||
<report>plugin-updates-report</report> | ||
<report>property-updates-report</report> | ||
</reports> | ||
</reportSet> | ||
</reportSets> | ||
</plugin> | ||
</plugins> | ||
</reporting> | ||
<profiles> | ||
<profile> | ||
<id>jacoco</id> | ||
<activation> | ||
<activeByDefault>false</activeByDefault> | ||
</activation> | ||
<build> | ||
<plugins> | ||
<plugin> | ||
<groupId>org.jacoco</groupId> | ||
<artifactId>jacoco-maven-plugin</artifactId> | ||
<version>${jacoco-version}</version> | ||
<executions> | ||
<execution> | ||
<goals> | ||
<goal>prepare-agent</goal> | ||
</goals> | ||
</execution> | ||
</executions> | ||
</plugin> | ||
</plugins> | ||
<pluginManagement> | ||
<plugins> | ||
<plugin> | ||
<groupId>org.eluder.coveralls</groupId> | ||
<artifactId>coveralls-maven-plugin</artifactId> | ||
<version>4.3.0</version> | ||
<configuration> | ||
<jacocoReports> | ||
<jacocoReport>${project.basedir}/edu.cuny.hunter.hybridize.tests.report/target/site/jacoco-aggregate/jacoco.xml</jacocoReport> | ||
</jacocoReports> | ||
<repoToken>71wVjTUWdxts3DnxmkannlSruAfGsxN6d</repoToken> | ||
<serviceName>travis-pro</serviceName> | ||
</configuration> | ||
</plugin> | ||
</plugins> | ||
</pluginManagement> | ||
</build> | ||
</profile> | ||
</profiles> | ||
<repositories> | ||
<repository> | ||
<id>Eclipse current release</id> | ||
<layout>p2</layout> | ||
<url>http://download.eclipse.org/releases/${platform-version-name}</url> | ||
</repository> | ||
<repository> | ||
<id>Eclipse current updates</id> | ||
<layout>p2</layout> | ||
<url>http://download.eclipse.org/eclipse/updates/${platform-version}</url> | ||
</repository> | ||
<repository> | ||
<id>common-refactoring</id> | ||
<layout>p2</layout> | ||
<url>https://raw.githubusercontent.com/ponder-lab/Common-Eclipse-Refactoring-Framework/master/edu.cuny.citytech.refactoring.common.updatesite</url> | ||
</repository> | ||
<repository> | ||
<id>PyDev</id> | ||
<layout>p2</layout> | ||
<url>http://www.pydev.org/updates</url> | ||
</repository> | ||
</repositories> | ||
<build> | ||
<plugins> | ||
<plugin> | ||
<groupId>org.eclipse.tycho</groupId> | ||
<artifactId>tycho-maven-plugin</artifactId> | ||
<version>${tycho-version}</version> | ||
<extensions>true</extensions> | ||
</plugin> | ||
<plugin> | ||
<groupId>org.eclipse.tycho</groupId> | ||
<artifactId>tycho-compiler-plugin</artifactId> | ||
<version>${tycho-version}</version> | ||
<configuration> | ||
<source>11</source> | ||
<target>11</target> | ||
</configuration> | ||
</plugin> | ||
<plugin> | ||
<groupId>org.eclipse.tycho</groupId> | ||
<artifactId>tycho-p2-repository-plugin</artifactId> | ||
<version>${tycho-version}</version> | ||
<configuration> | ||
<includeAllDependencies>true</includeAllDependencies> | ||
</configuration> | ||
</plugin> | ||
<plugin> | ||
<groupId>org.eclipse.tycho</groupId> | ||
<artifactId>target-platform-configuration</artifactId> | ||
<version>${tycho-version}</version> | ||
<configuration> | ||
<pomDependencies>consider</pomDependencies> | ||
<environments> | ||
<environment> | ||
<os>linux</os> | ||
<ws>gtk</ws> | ||
<arch>x86_64</arch> | ||
</environment> | ||
<environment> | ||
<os>linux</os> | ||
<ws>gtk</ws> | ||
<arch>x86</arch> | ||
</environment> | ||
<environment> | ||
<os>macosx</os> | ||
<ws>cocoa</ws> | ||
<arch>x86</arch> | ||
</environment> | ||
<environment> | ||
<os>macosx</os> | ||
<ws>cocoa</ws> | ||
<arch>x86_64</arch> | ||
</environment> | ||
<environment> | ||
<os>win32</os> | ||
<ws>win32</ws> | ||
<arch>x86</arch> | ||
</environment> | ||
<environment> | ||
<os>win32</os> | ||
<ws>win32</ws> | ||
<arch>x86_64</arch> | ||
</environment> | ||
</environments> | ||
</configuration> | ||
</plugin> | ||
</plugins> | ||
</build> | ||
</project> | ||
|