• Y
  • List All
  • Feedback
    • This Project
    • This Group
    • All Projects
Profile Account Log out
  • Favorite
  • Project
  • Recent History
Loading...
  • Log in
  • Sign up
yona-projects / yona star
  • Project homeH
  • CodeC
  • IssueI 16
  • Pull requestP
  • Review R 4
  • MilestoneM
  • BoardB 12
  • Files
  • Commit
  • Branches
yonabuild.xml
Download as .zip file
File name
Commit message
Commit date
app
change sitemng url
2012-11-24
conf
SiteAdmin:ProjectList search with projectName
2012-11-23
project
remove unimplemented link
2012-11-24
public
fix member page
2012-11-22
test
fix member page
2012-11-22
.gitignore
specify body length as 2000
2012-11-06
.travis.yml
change travis setting
2012-08-29
Procfile
deploy heroku test
2012-10-03
README
initialized Git repository
2012-06-26
README.md
update ci url
2012-08-29
build.xml
change sitemng url
2012-11-24
nforge.h2.db
heroku deploy test
2012-10-03
nforge.trace.db
heroku deploy test
2012-10-03
Sangcheol Hwang 2012-11-24 0cecd06 change sitemng url UNIX
Raw Open in browser Change history
<?xml version="1.0" encoding="UTF-8"?> <project name="projx" default="all" basedir="."> <description>Builds, tests, and runs projx</description> <property name="build.dir" value="./"/> <property name="src.dir" location="${build.dir}/src"/> <property name="test.dir" location="${build.dir}/test/src"/> <property name="test.htmlreports.dir" location="${build.dir}/test/htmlreports"/> <property name="test.data.dir" location="${build.dir}/test/data"/> <property name="junit.class.name" value="com.megacorp.projx.JUnit.AllTests"/> <!-- Classpath to find java packages --> <path id="classpath.base"> <pathelement location="/usr/java/latest/lib/tools.jar" /> </path <!-- Classpath for tests to find src packages --> <path id="classpath.src"> <pathelement location="src" /> </path> <path id="classpath.junittest"2 <path refid="classpath.base" /> <pathelement location="/opt/lib/junit-4.9b2.jar" /> <pathelement location="${test.dir}" /> </path> <target name="clean" description="Remove all .class files"> <delete includeEmptyDirs="true" failonerror="false"> <fileset dir="${src.dir}"> <include name="**/*.class"/> </fileset> <fileset dir="${test.dir}"> <include name="**/*.class"/> </fileset> <fileset dir="${test.htmlreports.dir}"> <include name="**/*.txt"/> <include name="**/*.xml"/> <include name="**/*.html"/> </fileset> </delete> </target> <target name="compile"> <javac srcdir="${src.dir}" destdir="${src.dir}" debug="true" includeAntRuntime="false"> <classpath refid="classpath.base"/> <include name="**/*.java"/> </javac> </target> <target name="compile-test" depends="compile"> <javac srcdir="${test.dir}" destdir="${test.dir}" debug="true" includes="${src.dir}" includeAntRuntime="false"> <classpath refid="classpath.base"/> 53 <classpath refid="classpath.src"/> 54 <classpath refid="classpath.junittest"/> 55 <include name="**/*.java"/> 56 </javac> 57 </target> 58 59 <target name="test" depends="compile-test"> 60 <mkdir dir="${test.data.dir}"/> 61 <mkdir dir="${test.htmlreports.dir}"/> 62 <junit fork="no" haltonfailure="no" showoutput="yes" printsummary="true"> 63 <test name="${junit.class.name}" todir="${test.data.dir}"/> 64 <formatter type="brief" usefile="false"/> 65 <formatter type="xml"/> 66 <classpath refid="classpath.base" /> 67 <classpath refid="classpath.src" /> 68 <classpath refid="classpath.junittest" /> 69 </junit> 70 <junitreport todir="${test.htmlreports.dir}"> 71 <fileset dir="${test.data.dir}"> 72 <include name="TEST-*.xml"/> 73 </fileset> 74 <report format="frames" todir="${test.htmlreports.dir}"/> 75 </junitreport> 76 </target> 77 78 <target name="all" depends="compile-test" /> 79 80 </project>

          
        
    
    
Copyright Yona authors & © NAVER Corp. & NAVER LABS Supported by NAVER CLOUD PLATFORM

or
Sign in with github login with Google Sign in with Google
Reset password | Sign up