├── README ├── pom.xml └── src ├── main ├── java │ └── au │ │ └── com │ │ └── rayh │ │ ├── AppFileFilter.java │ │ ├── XCodeBuildOutputParser.java │ │ ├── XCodeBuilder.java │ │ └── report │ │ ├── TestCase.java │ │ ├── TestFailure.java │ │ └── TestSuite.java ├── resources │ ├── au │ │ └── com │ │ │ └── rayh │ │ │ └── XCodeBuilder │ │ │ ├── config.jelly │ │ │ └── global.jelly │ └── index.jelly └── webapp │ ├── help-buildIpa.html │ ├── help-cleanBeforeBuild.html │ ├── help-configuration.html │ ├── help-sdk.html │ ├── help-target.html │ ├── help-updateBuildNumber.html │ ├── help-updateMarketingNumber.html │ ├── help-xcodeProjectFile.html │ └── help-xcodeProjectPath.html └── test └── java └── au └── com └── rayh └── XCodeBuildOutputParserTest.java /README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rayh/xcode-hudson-plugin/HEAD/README -------------------------------------------------------------------------------- /pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rayh/xcode-hudson-plugin/HEAD/pom.xml -------------------------------------------------------------------------------- /src/main/java/au/com/rayh/AppFileFilter.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rayh/xcode-hudson-plugin/HEAD/src/main/java/au/com/rayh/AppFileFilter.java -------------------------------------------------------------------------------- /src/main/java/au/com/rayh/XCodeBuildOutputParser.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rayh/xcode-hudson-plugin/HEAD/src/main/java/au/com/rayh/XCodeBuildOutputParser.java -------------------------------------------------------------------------------- /src/main/java/au/com/rayh/XCodeBuilder.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rayh/xcode-hudson-plugin/HEAD/src/main/java/au/com/rayh/XCodeBuilder.java -------------------------------------------------------------------------------- /src/main/java/au/com/rayh/report/TestCase.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rayh/xcode-hudson-plugin/HEAD/src/main/java/au/com/rayh/report/TestCase.java -------------------------------------------------------------------------------- /src/main/java/au/com/rayh/report/TestFailure.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rayh/xcode-hudson-plugin/HEAD/src/main/java/au/com/rayh/report/TestFailure.java -------------------------------------------------------------------------------- /src/main/java/au/com/rayh/report/TestSuite.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rayh/xcode-hudson-plugin/HEAD/src/main/java/au/com/rayh/report/TestSuite.java -------------------------------------------------------------------------------- /src/main/resources/au/com/rayh/XCodeBuilder/config.jelly: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rayh/xcode-hudson-plugin/HEAD/src/main/resources/au/com/rayh/XCodeBuilder/config.jelly -------------------------------------------------------------------------------- /src/main/resources/au/com/rayh/XCodeBuilder/global.jelly: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rayh/xcode-hudson-plugin/HEAD/src/main/resources/au/com/rayh/XCodeBuilder/global.jelly -------------------------------------------------------------------------------- /src/main/resources/index.jelly: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rayh/xcode-hudson-plugin/HEAD/src/main/resources/index.jelly -------------------------------------------------------------------------------- /src/main/webapp/help-buildIpa.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rayh/xcode-hudson-plugin/HEAD/src/main/webapp/help-buildIpa.html -------------------------------------------------------------------------------- /src/main/webapp/help-cleanBeforeBuild.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rayh/xcode-hudson-plugin/HEAD/src/main/webapp/help-cleanBeforeBuild.html -------------------------------------------------------------------------------- /src/main/webapp/help-configuration.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rayh/xcode-hudson-plugin/HEAD/src/main/webapp/help-configuration.html -------------------------------------------------------------------------------- /src/main/webapp/help-sdk.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rayh/xcode-hudson-plugin/HEAD/src/main/webapp/help-sdk.html -------------------------------------------------------------------------------- /src/main/webapp/help-target.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rayh/xcode-hudson-plugin/HEAD/src/main/webapp/help-target.html -------------------------------------------------------------------------------- /src/main/webapp/help-updateBuildNumber.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rayh/xcode-hudson-plugin/HEAD/src/main/webapp/help-updateBuildNumber.html -------------------------------------------------------------------------------- /src/main/webapp/help-updateMarketingNumber.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rayh/xcode-hudson-plugin/HEAD/src/main/webapp/help-updateMarketingNumber.html -------------------------------------------------------------------------------- /src/main/webapp/help-xcodeProjectFile.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rayh/xcode-hudson-plugin/HEAD/src/main/webapp/help-xcodeProjectFile.html -------------------------------------------------------------------------------- /src/main/webapp/help-xcodeProjectPath.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rayh/xcode-hudson-plugin/HEAD/src/main/webapp/help-xcodeProjectPath.html -------------------------------------------------------------------------------- /src/test/java/au/com/rayh/XCodeBuildOutputParserTest.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rayh/xcode-hudson-plugin/HEAD/src/test/java/au/com/rayh/XCodeBuildOutputParserTest.java --------------------------------------------------------------------------------