Jetbrains IDEA's Maven is dicky, here's how to fix various issues that may arise:
- Set the
MAVEN_OPTIONS
environment variable to:
-Daether.connector.http.useSystemProperties=true -Djava.net.useSystemProxies=true
- Execute
mvn idea:idea
from __future__ import annotations | |
from typing import TYPE_CHECKING | |
from dataclasses import dataclass, fields | |
from datetime import datetime, timezone | |
from enum import Enum | |
import uuid | |
import pandas as pd # External package, not in standard library. | |
from sqlengine import build_engine # External package, not in standard library. |