Skip to content
This repository has been archived by the owner on May 18, 2022. It is now read-only.

[Snyk] Upgrade javax.mail:mail from 1.4.1 to 1.4.7 #18

Open
wants to merge 1 commit into
base: master
Choose a base branch
from
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
50 changes: 24 additions & 26 deletions maven/new-clj/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -105,31 +105,29 @@
<phase>compile</phase>
<configuration>
<tasks>
<property name="bin.dir" value="${project.build.directory}/../bin" />
<property name="maven.runtime.classpath" refid="maven.runtime.classpath" />
<property name="maven.test.classpath" refid="maven.test.classpath" />
<property name="test.classpath" refid="maven.test.classpath" />
<property name="project.build.directory" value="${project.build.directory}" />
<property name="group.id" value="${project.groupId}" />
<property name="artifact.id" value="${project.artifactId}" />
<property name="version" value="${project.version}" />
<property name="basedir" value="${basedir}" />
<echo message="INSTALL-SCRIPTS" />
<filter token="maven.runtime.classpath"
value="${maven.runtime.classpath}:${project.build.directory}/../src/main/clj" />
<filter token="maven.test.classpath"
value="${maven.test.classpath}:${project.build.directory}/../src/main/clj" />
<filter token="bin.dir" value="${bin.dir}" />
<filter token="target.directory" value="${project.build.directory}" />
<filter token="test.classpath" value="${test.classpath}" />
<filter token="group.id" value="${group.id}" />
<filter token="artifact.id" value="${artifact.id}" />
<filter token="version" value="${version}" />
<filter token="basedir" value="${basedir}" />
<mkdir dir="${bin.dir}" />
<copy file="${basedir}/src/main/sh/repl" todir="${bin.dir}" filtering="on" overwrite="true" />
<copy file="${basedir}/src/main/emacs/slime-incl.el" todir="${bin.dir}" filtering="on" overwrite="true" />
<chmod dir="${bin.dir}" type="file" perm="0755" includes="repl,*.sh" verbose="true" />
<property name="bin.dir" value="${project.build.directory}/../bin"/>
<property name="maven.runtime.classpath" refid="maven.runtime.classpath"/>
<property name="maven.test.classpath" refid="maven.test.classpath"/>
<property name="test.classpath" refid="maven.test.classpath"/>
<property name="project.build.directory" value="${project.build.directory}"/>
<property name="group.id" value="${project.groupId}"/>
<property name="artifact.id" value="${project.artifactId}"/>
<property name="version" value="${project.version}"/>
<property name="basedir" value="${basedir}"/>
<echo message="INSTALL-SCRIPTS"/>
<filter token="maven.runtime.classpath" value="${maven.runtime.classpath}:${project.build.directory}/../src/main/clj"/>
<filter token="maven.test.classpath" value="${maven.test.classpath}:${project.build.directory}/../src/main/clj"/>
<filter token="bin.dir" value="${bin.dir}"/>
<filter token="target.directory" value="${project.build.directory}"/>
<filter token="test.classpath" value="${test.classpath}"/>
<filter token="group.id" value="${group.id}"/>
<filter token="artifact.id" value="${artifact.id}"/>
<filter token="version" value="${version}"/>
<filter token="basedir" value="${basedir}"/>
<mkdir dir="${bin.dir}"/>
<copy file="${basedir}/src/main/sh/repl" todir="${bin.dir}" filtering="on" overwrite="true"/>
<copy file="${basedir}/src/main/emacs/slime-incl.el" todir="${bin.dir}" filtering="on" overwrite="true"/>
<chmod dir="${bin.dir}" type="file" perm="0755" includes="repl,*.sh" verbose="true"/>
</tasks>
</configuration>
<goals>
Expand Down Expand Up @@ -205,7 +203,7 @@
<dependency>
<groupId>javax.mail</groupId>
<artifactId>mail</artifactId>
<version>1.4.1</version>
<version>1.4.7</version>
</dependency>

</dependencies>
Expand Down