Home
last modified time | relevance | path

Searched +full:maven +full:- +full:bin (Results 1 – 25 of 228) sorted by relevance

12345678910

/external/dagger2/util/
Dinstall-maven.sh1 #!/bin/bash
3 set -eux
5 function install-maven-version {
13 pushd "$(mktemp -d)"
14 # Download the maven version
15 …archive.apache.org/dist/maven/maven-3/${VERSION}/binaries/apache-maven-${VERSION}-bin.tar.gz --out…
18 sudo tar xvf apache-maven-${VERSION}-bin.tar.gz -C /usr/share/
22 sudo unlink /usr/bin/mvn
23 sudo ln -s /usr/share/apache-maven-${VERSION}/bin/mvn /usr/bin/mvn
26 if [ $# -lt 1 ]; then
[all …]
/external/opencensus-java/examples/
DREADME.md10 ### Maven subsection
26 ./build/install/opencensus-examples/bin/TagContextExample
29 ### Maven subsection
31 ./target/appassembler/bin/TagContextExample
38 ./build/install/opencensus-examples/bin/ZPagesTester
41 ### Maven subsection
43 ./target/appassembler/bin/ZPagesTester
61 ./build/install/opencensus-examples/bin/QuickStart
64 ### Maven subsection
66 ./target/appassembler/bin/QuickStart
[all …]
/external/javaparser/
Dappveyor.yml6 - ps: |
7 Add-Type -AssemblyName System.IO.Compression.FileSystem
8 if (!(Test-Path -Path "C:\maven" )) {
9 (new-object System.Net.WebClient).DownloadFile(
10 'http://www.us.apache.org/dist/maven/maven-3/3.2.5/binaries/apache-maven-3.2.5-bin.zip',
11 'C:\maven-bin.zip'
13 [System.IO.Compression.ZipFile]::ExtractToDirectory("C:\maven-bin.zip", "C:\maven")
15 - cmd: SET PATH=C:\maven\apache-maven-3.2.5\bin;%JAVA_HOME%\bin;%PATH%
16 - cmd: SET MAVEN_OPTS=-Xmx1g
17 - cmd: SET JAVA_OPTS=-Xmx1g
[all …]
/external/apache-commons-compress/src/test/java/org/apache/commons/compress/archivers/zip/
DMaven221MultiVolumeTest.java9 * http://www.apache.org/licenses/LICENSE-2.0
32 * JUnit testcase for a multi-volume zip file.
34 * Some tools (like 7-zip) allow users to split a large archives into 'volumes'
39 * Before commons-compress used to enter an infinite loop on the last entry for
48 "apache-maven-2.2.1/",
49 "apache-maven-2.2.1/LICENSE.txt",
50 "apache-maven-2.2.1/NOTICE.txt",
51 "apache-maven-2.2.1/README.txt",
52 "apache-maven-2.2.1/bin/",
53 "apache-maven-2.2.1/bin/m2.conf",
[all …]
/external/jacoco/
D.appveyor.yml2 - C:\Users\appveyor\apache-maven-3.3.9 -> appveyor.yml
3 - C:\Users\appveyor\.m2 -> **\pom.xml
6 - if not exist C:\Users\appveyor\apache-maven-3.3.9 (
7 …l -LsS "http://www.apache.org/dyn/closer.cgi?action=download&filename=maven/maven-3/3.3.9/binaries…
8 unzip apache-maven-3.3.9-bin.zip -d C:\Users\appveyor
10 - SET PATH=C:\Users\appveyor\apache-maven-3.3.9\bin;%PATH%
13 …# Maven 3.3.9 requires Java >= 7, but generation of Javadocs requires Java <= 6 (https://github.co…
14 - mvn -V -B -e verify -Djdk.version=6 --toolchains=.travis\appveyor-toolchains.xml
17 - path: jacoco\target\*.zip
/external/google-cloud-java/google-cloud-examples/
DREADME.md4 Examples for google-cloud (Java idiomatic client for [Google Cloud Platform][cloud-platform] servic…
7 https://github.com/googleapis/google-cloud-java/tree/main_202208/google-cloud-examples)
11 …rcleci.com/gh/googleapis/google-cloud-java/tree/master.svg?style=shield)](https://circleci.com/gh/…
12 …veralls.io/repos/googleapis/google-cloud-java/badge.svg?branch=master)](https://coveralls.io/r/goo…
13Maven](https://img.shields.io/maven-central/v/com.google.cloud/google-cloud-examples.svg)]( https:…
14 …dge/grade/9da006ad7c3a4fe1abd142e77c003917)](https://www.codacy.com/app/mziccard/google-cloud-java)
17 - [Examples](https://googleapis.dev/java/google-cloud-clients/latest/index.html?com/google/cloud/e…
20 ----------
22 [//]: # ({x-version-update-start:google-cloud-examples:released})
23 If you are using Maven, add this to your pom.xml file
[all …]
/external/sdk-platform-java/.github/workflows/
Dci.yaml4 - main
11 runs-on: ubuntu-22.04
16 - uses: actions/checkout@v3
17 - uses: actions/setup-java@v3
19 java-version: ${{ matrix.java }}
21 cache: maven
22 - run: java -version
23 - name: Unit Tests
25 mvn test --batch-mode --no-transfer-progress -Dcheckstyle.skip \
26 -Dfmt.skip -DenableTestCoverage
[all …]
/external/oss-fuzz/projects/kryo/
DDockerfile7 # http://www.apache.org/licenses/LICENSE-2.0
17 FROM gcr.io/oss-fuzz-base/base-builder-jvm
19 RUN curl -L https://downloads.apache.org/maven/maven-3/3.6.3/binaries/apache-maven-3.6.3-bin.zip -o…
20 unzip maven.zip -d $SRC/maven && \
21 rm -rf maven.zip
23 ENV MVN $SRC/maven/apache-maven-3.6.3/bin/mvn
25 RUN git clone --depth 1 https://github.com/EsotericSoftware/kryo
/external/oss-fuzz/projects/zxing/
DDockerfile7 # http://www.apache.org/licenses/LICENSE-2.0
17 FROM gcr.io/oss-fuzz-base/base-builder-jvm
19 RUN curl -L https://downloads.apache.org/maven/maven-3/3.6.3/binaries/apache-maven-3.6.3-bin.zip -o…
20 unzip maven.zip -d $SRC/maven && \
21 rm -rf maven.zip
23 ENV MVN $SRC/maven/apache-maven-3.6.3/bin/mvn
25 RUN git clone --depth 1 https://github.com/zxing/zxing
/external/grpc-grpc-java/buildscripts/grpc-java-artifacts/
DDockerfile3 RUN yum install -y \
6 gcc-c++ \
7 gcc-c++.i686 \
8 glibc-devel \
9 glibc-devel.i686 \
10 java-1.8.0-openjdk-devel \
11 libstdc++-devel \
12 libstdc++-devel.i686 \
13 libstdc++-static \
14 libstdc++-static.i686 \
[all …]
/external/oss-fuzz/projects/protobuf-java/
DDockerfile7 # http://www.apache.org/licenses/LICENSE-2.0
17 FROM gcr.io/oss-fuzz-base/base-builder-jvm
19 RUN apt-get update && apt-get install -y make autoconf automake libtool pkg-config
21 RUN curl -L https://downloads.apache.org/maven/maven-3/3.6.3/binaries/apache-maven-3.6.3-bin.zip -o…
22 unzip maven.zip -d $SRC/maven && \
23 rm -rf maven.zip
25 ENV MVN $SRC/maven/apache-maven-3.6.3/bin/mvn
27 RUN curl -L -O https://raw.githubusercontent.com/protobuf-c/protobuf-c/39cd58f5ff06048574ed5ce17ee6…
29 RUN git clone --depth 1 --recursive https://github.com/protocolbuffers/protobuf.git
/external/snakeyaml/
Dmvnw1 #!/bin/sh
2 # ----------------------------------------------------------------------------
11 # http://www.apache.org/licenses/LICENSE-2.0
19 # ----------------------------------------------------------------------------
21 # ----------------------------------------------------------------------------
22 # Maven Start Up Batch script
25 # ------------------
26 # JAVA_HOME - location of a JDK home dir
29 # -----------------
30 # M2_HOME - location of maven2's installed home dir
[all …]
/external/jazzer-api/examples/junit-spring-web/
Dmvnw1 #!/bin/sh
2 # ----------------------------------------------------------------------------
11 # https://www.apache.org/licenses/LICENSE-2.0
19 # ----------------------------------------------------------------------------
21 # ----------------------------------------------------------------------------
22 # Maven Start Up Batch script
25 # ------------------
26 # JAVA_HOME - location of a JDK home dir
29 # -----------------
30 # M2_HOME - location of maven2's installed home dir
[all …]
Dbuild-and-run-tests.sh1 #!/usr/bin/env bash
8 # http://www.apache.org/licenses/LICENSE-2.0
16 # Development-only. This script builds the example project against the local version of Jazzer,
19 set -e
25 JAZZER_VERSION=$(grep -oP '(?<=JAZZER_VERSION = ")[^"]*' ../../maven.bzl)
26 # Find line with "<artifactId>jazzer-junit</artifactId>" and replace the version in the next line
27 sed -i "/<artifactId>jazzer-junit<\/artifactId>/ {n;s/<version>.*<\/version>/<version>$JAZZER_VERSI…
29 # Add locally-built Jazzer to the Maven repository
30 ./mvnw install:install-file -Dfile=../../bazel-bin/deploy/jazzer-junit-project.jar -DpomFile=../../…
31 ./mvnw install:install-file -Dfile=../../bazel-bin/deploy/jazzer-project.jar -DpomFile=../../…
[all …]
/external/oss-fuzz/projects/jackson-dataformat-xml/
DDockerfile7 # http://www.apache.org/licenses/LICENSE-2.0
17 FROM gcr.io/oss-fuzz-base/base-builder-jvm
19 RUN curl -L https://downloads.apache.org/maven/maven-3/3.6.3/binaries/apache-maven-3.6.3-bin.zip -o…
20 unzip maven.zip -d $SRC/maven && \
21 rm -rf maven.zip
23 ENV MVN $SRC/maven/apache-maven-3.6.3/bin/mvn
25 RUN git clone --depth 1 https://github.com/google/fuzzing && \
27 rm -rf fuzzing
29 RUN git clone --depth 1 https://github.com/dvyukov/go-fuzz-corpus && \
30 zip -j $SRC/XmlFuzzer_seed_corpus.zip go-fuzz-corpus/xml/corpus/* && \
[all …]
/external/oss-fuzz/projects/jsoup/
DDockerfile7 # http://www.apache.org/licenses/LICENSE-2.0
17 FROM gcr.io/oss-fuzz-base/base-builder-jvm
19 RUN curl -L https://downloads.apache.org/maven/maven-3/3.6.3/binaries/apache-maven-3.6.3-bin.zip -o…
20 unzip maven.zip -d $SRC/maven && \
21 rm -rf maven.zip
23 ENV MVN $SRC/maven/apache-maven-3.6.3/bin/mvn
25 RUN git clone --depth 1 https://github.com/google/fuzzing && \
28 rm -rf fuzzing
30 RUN git clone --depth 1 https://github.com/dvyukov/go-fuzz-corpus && \
31 zip -j $SRC/XmlFuzzer_seed_corpus.zip go-fuzz-corpus/xml/corpus/* && \
[all …]
/external/tensorflow/tensorflow/java/
DREADME.md10 - Refer to [Installing TensorFlow for Java](https://www.tensorflow.org/install/lang_java)
11 - [Javadoc](https://www.tensorflow.org/api_docs/java/reference/org/tensorflow/package-summary)
12 - [![Maven Central](https://maven-badges.herokuapp.com/maven-central/org.tensorflow/tensorflow/ba…
16 Releases built from release branches are available on Maven Central.
19 - [JAR](https://storage.googleapis.com/tensorflow-nightly/github/tensorflow/lib_package/libtensor…
20 - [Source JAR](https://storage.googleapis.com/tensorflow-nightly/github/tensorflow/lib_package/li…
21 - JNI:
22- [Linux CPU-only](https://storage.googleapis.com/tensorflow-nightly/github/tensorflow/lib_packa…
23- [Linux GPU](https://storage.googleapis.com/tensorflow-nightly/github/tensorflow/lib_package/li…
24- [MacOS](https://storage.googleapis.com/tensorflow-nightly/github/tensorflow/lib_package/libten…
[all …]
/external/aws-sdk-java-v2/
Dmvnw1 #!/bin/sh
2 # ----------------------------------------------------------------------------
11 # http://www.apache.org/licenses/LICENSE-2.0
19 # ----------------------------------------------------------------------------
21 # ----------------------------------------------------------------------------
22 # Apache Maven Wrapper startup batch script, version 3.2.0
25 # ------------------
26 # JAVA_HOME - location of a JDK home dir
29 # -----------------
30 # MAVEN_OPTS - parameters passed to the Java VM when running Maven
[all …]
/external/guava/
Dmvnw1 #!/bin/sh
2 # ----------------------------------------------------------------------------
11 # http://www.apache.org/licenses/LICENSE-2.0
19 # ----------------------------------------------------------------------------
21 # ----------------------------------------------------------------------------
22 # Apache Maven Wrapper startup batch script, version 3.2.0
25 # ------------------
26 # JAVA_HOME - location of a JDK home dir
29 # -----------------
30 # MAVEN_OPTS - parameters passed to the Java VM when running Maven
[all …]
/external/protobuf/protoc-artifacts/
DDockerfile3 RUN yum install -y git \
8 curl-devel \
12 glibc-static.i686 \
13 glibc-devel \
14 glibc-devel.i686 \
19 RUN wget -q --no-cookies --no-check-certificate \
20--header "Cookie: gpw_e24=http%3A%2F%2Fwww.oracle.com%2F; oraclelicense=accept-securebackup-cookie…
21 …"http://download.oracle.com/otn-pub/java/jdk/8u131-b11/d54c1d3a095b4ff2b6607d096fa80163/jdk-8u131-
22 -O - | tar xz -C /var/local
24 ENV PATH $JAVA_HOME/bin:$PATH
[all …]
/external/cronet/third_party/protobuf/protoc-artifacts/
DDockerfile3 RUN yum install -y git \
8 curl-devel \
12 glibc-static.i686 \
13 glibc-devel \
14 glibc-devel.i686 \
19 RUN wget -q --no-cookies --no-check-certificate \
20--header "Cookie: gpw_e24=http%3A%2F%2Fwww.oracle.com%2F; oraclelicense=accept-securebackup-cookie…
21 …"http://download.oracle.com/otn-pub/java/jdk/8u131-b11/d54c1d3a095b4ff2b6607d096fa80163/jdk-8u131-
22 -O - | tar xz -C /var/local
24 ENV PATH $JAVA_HOME/bin:$PATH
[all …]
/external/oss-fuzz/projects/apache-commons/
DDockerfile7 # http://www.apache.org/licenses/LICENSE-2.0
17 FROM gcr.io/oss-fuzz-base/base-builder-jvm
19 RUN curl -L https://downloads.apache.org/maven/maven-3/3.6.3/binaries/apache-maven-3.6.3-bin.zip -o…
20 unzip maven.zip -d $SRC/maven && \
21 rm -rf maven.zip
23 ENV MVN $SRC/maven/apache-maven-3.6.3/bin/mvn
26 RUN git clone --depth 1 https://github.com/google/fuzzing && \
32 rm -rf fuzzing
34 # Seed corpus (go-fuzz-corpus)
35 RUN git clone --depth 1 https://github.com/dvyukov/go-fuzz-corpus && \
[all …]
Dbuild.sh1 #!/bin/bash -eu
8 # http://www.apache.org/licenses/LICENSE-2.0
22 GEOMETRY_MODULE="commons-geometry-io-euclidean"
25 cd $SRC/commons-$project
26 …MAVEN_ARGS="-Dmaven.test.skip=true -Djavac.src.version=15 -Djavac.target.version=15 -Djdk.version=…
27 CURRENT_VERSION=$($MVN org.apache.maven.plugins:maven-help-plugin:3.2.0:evaluate \
28 -Dexpression=project.version -q -DforceStdout)
31 # commons-geometry is a multi-module project and requires special handling in order
32 # to build and extract the proper module (commons-geometry-io-euclidean)
33 …$MVN package org.apache.maven.plugins:maven-shade-plugin:3.2.4:shade -am -pl $GEOMETRY_MODULE $MAV…
[all …]
/external/grpc-grpc-java/examples/example-jwt-auth/
DREADME.md4 This example illustrates a simple JWT-based authentication implementation in gRPC using
7 The example requires grpc-java to be pre-built. Using a release tag will download the relevant bina…
8 from a maven repository. But if you need the latest SNAPSHOT binaries you will need to follow
16 The build creates scripts `auth-server` and `auth-client` in the `build/install/example-jwt-auth/bi…
20 Running auth-server is similar to the normal hello world example and there are no arguments to supp…
22 **auth-server**:
24 The auth-server accepts optional argument for port on which the server should run:
27 USAGE: auth-server [port]
30 The auth-client accepts optional arguments for server-host, server-port, user-name and client-id:
32 **auth-client**:
[all …]
/external/jazzer-api/examples/junit-spring-web/.mvn/wrapper/
Dmaven-wrapper.properties1 distributionUrl=https://repo.maven.apache.org/maven2/org/apache/maven/apache-maven/3.8.6/apache-mav…
2 wrapperUrl=https://repo.maven.apache.org/maven2/org/apache/maven/wrapper/maven-wrapper/3.1.0/maven-

12345678910