Skip to content

Commit

Permalink
Update IDEA download URL
Browse files Browse the repository at this point in the history
  • Loading branch information
atsky committed Aug 15, 2017
1 parent a2a27e4 commit a9be4e8
Showing 1 changed file with 3 additions and 6 deletions.
9 changes: 3 additions & 6 deletions build.xml
Original file line number Diff line number Diff line change
Expand Up @@ -8,8 +8,8 @@
<property name="cabal.lexer.flex.file" value="plugin/src/org/jetbrains/cabal/parser/Cabal.flex"/>
<property name="haskell.lexer.result.file" value="plugin/src/org/jetbrains/haskell/parser/lexer/_HaskellLexer.java"/>
<property name="haskell.lexer.flex.file" value="plugin/src/org/jetbrains/haskell/parser/lexer/Haskell.flex"/>
<property name="idea" value="${build.dir}/idea-IC-163.15188.11"/>
<property name="idea.download.url" value="https://download.jetbrains.com/idea/ideaIC-2016.3.6-no-jdk.tar.gz"/>
<property name="idea" value="${build.dir}/IDEA"/>
<property name="idea.download.url" value="https://www.jetbrains.com/intellij-repository/releases/com/jetbrains/intellij/idea/ideaIC/2017.1.4/ideaIC-2017.1.4.zip"/>
<property name="plugin.destination" value="${build.dir}/haskell-plugin/lib/" />
<property name="build.number" value="snapshot"/>

Expand Down Expand Up @@ -83,7 +83,6 @@
</target>

<!--cabal lexer-->

<target name="compile.cabal.lexer">
<sequential>
<delete file="${cabal.lexer.result.file}"/>
Expand All @@ -92,14 +91,12 @@
</sequential>
</target>



<!-- Unpack idea-*.zip file -->
<target name="idea" depends="download.idea" description="Extract downloaded artifacts and set up idea.home">
<delete dir="${idea}"/>
<mkdir dir="${idea}"/>
<basename property="idea.filename" file="${idea.download.url}"/>
<untar src="${build.dir}/${idea.filename}" dest="${build.dir}" compression="gzip"/>
<unzip src="${build.dir}/${idea.filename}" dest="${build.dir}/IDEA"/>
</target>

<!-- Download IntelliJ IDEA distribution -->
Expand Down

0 comments on commit a9be4e8

Please sign in to comment.