Skip to content

Latest commit

 

History

History
20 lines (17 loc) · 1.04 KB

devcontainer-notes.md

File metadata and controls

20 lines (17 loc) · 1.04 KB
  1. See devcontainer-setting.xml for a discussion of using a PAT to access the derec-api dependency.
  2. Comments in JSON (specifically devcontainer.json) see microsoft/vscode#139599
  3. Setting up a Java Project in Codespaces
  4. GitHub CLI
  5. Adding a local JAR file to a maven project (deprecated)
    <dependency>
      <groupId>com.sample</groupId>
      <artifactId>sample</artifactId>
      <version>1.0</version>
      <scope>system</scope>
      <systemPath>${project.basedir}/src/main/resources/Name_Your_JAR.jar</systemPath>
    </dependency>
  6. GitHub packages working with the Apache Maven registry