Skip to content

Commit

Permalink
Removing support for old tfjs packaging in maven
Browse files Browse the repository at this point in the history
  • Loading branch information
pgazdik committed Dec 23, 2024
1 parent 6b1564b commit 8553112
Show file tree
Hide file tree
Showing 6 changed files with 6 additions and 398 deletions.
11 changes: 0 additions & 11 deletions common-ant-script/res/build.xml
Original file line number Diff line number Diff line change
Expand Up @@ -41,14 +41,12 @@ You should have received a copy of the GNU Lesser General Public License along w
<isset property="generateOptionals" />
</not>
<then>
<property name="generateJsinterop" value="true"/>
<property name="generateNpmPackage" value="true"/>
</then>
</if>
<!-- Now we set everything else to "generateOptionals" or "false" if "generateOptionals"
wasn't specified -->
<property name="generateOptionals" value="false"/>
<property name="generateJsinterop" value="true"/>
<property name="generateNpmPackage" value="true"/>
<property name="generateJavadoc" value="${generateOptionals}"/>
<bt:pom id="pom.project" file="pom.xml" />
Expand Down Expand Up @@ -293,14 +291,5 @@ You should have received a copy of the GNU Lesser General Public License along w
</then>
</if>
</target>
<target name="dist-jsinterop" depends="make-jsinterop">
<if>
<available file="${dist}/jsinterop" type="dir"/>
<then>
<zip basedir="${dist}/jsinterop" destfile="${dist}/${versionedName}.js.zip"/>
</then>
</if>
</target>
<target name="make-jsinterop" />
<target name="make-npm-package" />
</project>
Original file line number Diff line number Diff line change
Expand Up @@ -55,7 +55,6 @@
<taskdef name="modelIndexer" classname="com.braintribe.build.ant.tasks.ModelIndexerTask"/>
<taskdef name="hasher" classname="com.braintribe.build.ant.tasks.SolutionHasher"/>
<taskdef name="getArtifactsRoot" classname="com.braintribe.build.ant.tasks.WorkingCopyRootForArtifact" />
<taskdef name="tfjs" classname="com.braintribe.build.ant.tasks.typescript.GenerateJsInteropTypeScriptTask"/>
<taskdef name="npm" classname="com.braintribe.build.ant.tasks.typescript.GenerateNpmPackageTask"/>
<taskdef name="indexRes" classname="com.braintribe.build.ant.tasks.IndexResourcesTask"/>
<taskdef name="determineProcessingDataInsightFolder" classname="com.braintribe.build.ant.tasks.DetermineProcessingDataInsightFolder" />
Expand Down

This file was deleted.

6 changes: 0 additions & 6 deletions jsinterop-base-ant-script/res/build.xml
Original file line number Diff line number Diff line change
Expand Up @@ -3,10 +3,4 @@
<project xmlns:artifact="antlib:org.apache.maven.artifact.ant" xmlns:bt="antlib:com.braintribe.build.ant.tasks" basedir="." default="install">
<bt:import artifact="com.braintribe.devrock.ant:library-ant-script#1.0" useCase="DEVROCK"/>

<target name="make-jsinterop" depends="clean">
<copy todir="${dist}/jsinterop">
<fileset dir="res"/>
</copy>
</target>

</project>
Loading

0 comments on commit 8553112

Please sign in to comment.